|
@@ -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 {
|