Parcourir la source

历史记录-修改

lzw il y a 3 mois
Parent
commit
77a7f76646

+ 18 - 156
src/components/pages/test/checkAi/aiLeader.vue

@@ -324,6 +324,9 @@ export default {
       type: String,
       default: ""
     },
+    formList:{
+      type:Array
+    }
 
   },
   data() {
@@ -491,53 +494,7 @@ export default {
     delFileList(index) {
       this.fileList.splice(index, 1)
     },
-    // setJson(array){
-    //   const getAnswer = (j) => {
-    //     switch (j.type) {
-    //       case 1:
-    //         return j.json.array
-    //           .filter((_, idx) => j.json.answer2.includes(idx))
-    //           .map(item => `${item.img}${item.option}`)
-    //           .join(',');
-    //       case 3:
-    //       case 6:
-    //       case 7:
-    //       case 8:
-    //       case 11:
-    //         return j.json.answer2;
-    //       case 5:
-    //         if (!Array.isArray(j.json.file) || j.json.file.length === 0) {
-    //           return '无附件';
-    //         }
-    //         return j.json.file.map(file => `${file.name}(${file.url})`).join(',');
-    //       default:
-    //         return '';
-    //     }
-    //   };
-
-    //   this.answerArray = array.map(i => ({
-    //     "用户名": i.name,
-    //     "提交时间": i.time,
-    //     "表单内容": i.array.map((j, index) => ({
-    //       "序号": index + 1,
-    //       "题目": j.json.title,
-    //       "题目类型": this.options2[j.type],
-    //       "答案": getAnswer(j)
-    //     }))
-    //   }))
-    //   console.log(this.answerArray);
-
-    //   // 将JSON对象转换为字符串
-    //   const jsonString = JSON.stringify(this.answerArray, null, 2);
-
-    //   // 创建Blob对象
-    //   const blob = new Blob([jsonString], { type: "application/json" });
-    //   blob.lastModifiedDate = new Date();
-    //   blob.name = `表单数据.json`;
-
-    //   // 如果仍需要上传文件,可以保留这行
-    //   return this.uploadFile(blob);
-    // },
+    
     selectable(row, index) {
       return row.worksCount > 0
     },
@@ -586,20 +543,22 @@ export default {
       }
     },
     async addChat(names) {
+      
       let _uid = uuidv4();
       let cid = `${_uid}-testSmarter`; // 生成的 cid
       this.cid = cid
       let params = [{
         uid: this.userid,
         name: names,
-        cid: cid
+        cid: cid,
+        j:this.localFormList
       }];
 
       try {
         const res = await this.ajax.post(this.$store.state.api + "addChat", params);
-        // 不需要从响应中获取 cid,因为已经在请求中传递
-        // 直接将生成的 cid 传递给 getChatList
-        // await this.getChatList(cid);
+        
+        
+       
       } catch (err) {
         console.error(err);
       }
@@ -966,90 +925,7 @@ export default {
       this.getCourse();
 
     },
-    // setJson(obj) {
-    //   let array = obj.worksArray;
-    //   let name = obj.name;
-    //   if (array.length == 0) {
-    //     console.log("没人提交1111")
-    //     return this.$emit("pushFileData", {
-    //       fileId: "",
-    //       name: name,
-    //       url: ""
-    //     });
-    //   } else {
-    //     console.log(data.Location);
-    //     console.log("提交11111")
-    //     _this.fileList.push(data.Location);
-    //     _this.$emit("pushFileData", {
-    //       fileId: "",
-    //       name: name,
-    //       url: data.Location
-    //     });
-    //   }
-    //   const getAnswer = j => {
-    //     if (j.type === 1) {
-    //       return j.json.array
-    //         .filter((_, idx) => j.json.answer2.includes(idx))
-    //         .map(item => `${item.img}${item.option}`)
-    //         .join(",");
-    //     } else if (
-    //       j.type === 3 ||
-    //       j.type === 6 ||
-    //       j.type === 7 ||
-    //       j.type === 8 ||
-    //       j.type === 11
-    //     ) {
-    //       return typeof j.json.answer2 === "string"
-    //         ? j.json.answer2.replace(/\n/g, " ")
-    //         : j.json.answer2;
-    //     } else if (j.type === 5) {
-    //       if (!Array.isArray(j.json.file) || j.json.file.length === 0) {
-    //         return "无附件";
-    //       }
-    //       return j.json.file
-    //         .map(file => `${file.name}(${file.url})`)
-    //         .join(",");
-    //     } else {
-    //       return "";
-    //     }
-    //   };
-
-    //   // 获取所有题目类型和题目
-    //   const questions = array[0].array.map((j, index) => ({
-    //     序号: index + 1,
-    //     题目类型: this.options2[j.type],
-    //     题目: j.json.title
-    //   }));
-
-    //   console.log(questions);
-    //   // let csvContent = "data:text/csv;charset=utf-8,"
-    //   // 构建CSV内容
-    //   // let csvContent = "用户名 | 提交时间 | " + questions.map(q => `${q.序号}-${q.题目类型}-${q.题目}`).join(' | ') + "\n";
-    //   let csvContent = "用户名,提交时间," + questions.map(q => `${q.序号}-${q.题目类型}-${q.题目}`).join(",") + "\n";
-
-    //   // 添加每个用户的答案
-    //   array.forEach(i => {
-    //     let row = [i.name, i.time];
-    //     i.array.forEach(j => {
-    //       row.push(getAnswer(j));
-    //     });
-    //     // csvContent += row.join(' | ') + "\n";
-    //     csvContent += row.join(",") + "\n";
-    //   });
-
-    //   // 创建Blob对象
-    //   // const blob = new Blob([csvContent], { type: "text/plain;charset=utf-8" });
-    //   // blob.lastModifiedDate = new Date();
-    //   // blob.name = `${name}_表单数据.txt`;
-
-    //   // 创建Blob对象
-    //   const blob = new Blob([csvContent], { type: "text/csv;charset=utf-8" });
-    //   blob.lastModifiedDate = new Date();
-    //   blob.name = `${name}_表单数据.csv`;
-
-    //   // 如果仍需要上传文件,可以保留这行
-    //   return this.uploadFile({ file: blob, name: name });
-    // },
+    
     uploadFile({ file, name }) {
       var credentials = {
         accessKeyId: "AKIATLPEDU37QV5CHLMH",
@@ -1099,27 +975,7 @@ export default {
                 name: name,
                 url: data.Location
               });
-              // _this.ajax
-              //   .put("https://gpt4.cocorobo.cn/upload_file_knowledge", {
-              //     url: data.Location
-              //   })
-              //   .then(res => {
-              //     let _data = res.data.FunctionResponse;
-              //     if (_data.result && _data.result.id) {
-              //       _this.fileId.push(_data.result.id);
-              //       _this.$emit("pushFileData", { fileId: _data.result.id, name: name, url: data.Location })
-              //     } else {
-              //       console.error("获取fileId失败");
-              //     }
-
-              //   })
-              //   .catch(e => {
-              //     console.log(e);
-              //     console.error("获取fileId失败");
-              //   });
-              // }
-
-              // console.log(data.Location)
+             
             }
           });
       }
@@ -1914,6 +1770,12 @@ export default {
     },
   },
   computed: {
+    localFormList() {
+      // 在 computed 属性中返回一个新的数组,而不是直接修改 prop
+      let localFormList =  [...this.formList];
+      return JSON.stringify(localFormList);
+
+    },
     pan() {
       return content => {
         try {

+ 10 - 9
src/components/pages/test/smarter.vue

@@ -75,10 +75,10 @@
                     <span class="more_icon"></span>
                 </div>
             </div>
-            <div v-if="activeMenu == 1" style="width:100%;display: flex;">
+            <div v-show="activeMenu == 1" style="width:100%;display: flex;">
                 <div class="cc_b_middle">
                     <div style="width:100%;height: 100%;">
-                        <aiLeader :courseId="aiBoxRightCid" :worksArray="courseInfoList" ref="aiChat"
+                        <aiLeader :courseId="aiBoxRightCid" :worksArray="courseInfoList" :formList="menuList" ref="aiChat"
                             @pushFileData="pushFileData" @clearFileData="clearFileData"></aiLeader>
                     </div>
                 </div>
@@ -136,7 +136,7 @@
                     </div>
                 </div>
             </div>
-            <div v-if="activeMenu == 2" style="width:100%;">
+            <div v-show="activeMenu == 2" style="width:100%;">
                 <div class="history_talk">
                     <div class="h_t_head">
                         <div class="t_h_left">
@@ -265,12 +265,15 @@ export default {
     methods: {
         handleRowClick(row, column, event) {
             this.activeMenu = 1;
-            // console.log(JSON.stringify(row))
+            console.log(JSON.stringify(row))
             this.$nextTick(() => {
                 // 调试输出
                 console.log(this.$refs.aiChat);
                 if (this.$refs.aiChat) {
                     this.$refs.aiChat.getChatList(row.chatid);
+                    let obj = JSON.parse(row.json)
+                    this.menuList = obj;
+                    this.$refs.aiChat.fileList = obj.map(i=>i.url)
                 } else {
                     console.error('aiChat ref is not available');
                 }
@@ -282,9 +285,11 @@ export default {
             this.dialogVisibleUpdate = true;
         },
         UpdateTalkName() {
+            const j = this.menuList.map(i => i.url).join(",")
             let params = [{
                 id: this.chatId,
                 name: this.talkName1,
+                j:j
             }];
             this.ajax
                 .post(this.$store.state.api + "updateChat", params)
@@ -523,11 +528,7 @@ export default {
     },
     computed: {
         showFileUrl() {
-            if(this.activeMenu == 2){
-                this.menuList = ''
-                return ""
-            }
-            else if (this.menuList.length) {
+            if (this.menuList.length) {
                 return this.menuList[this.menuIndex].url
             } else {
                 return "";