|
@@ -12391,10 +12391,93 @@ export default {
|
|
|
homeworkList: [],
|
|
|
},)
|
|
|
}
|
|
|
+ _this.unitJson2 = JSON.parse(JSON.stringify(_this.unitJson))
|
|
|
+ _this.$forceUpdate();
|
|
|
+ let url = []
|
|
|
+ if (_this.infoData.length) {
|
|
|
+ for (var i = 0; i < this.infoData.length; i++) {
|
|
|
+ url.push(_this.infoData[i].url)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ let msg = `
|
|
|
+ ATTENTION: Use '##' to SPLIT SECTIONS, not '#'. Output format carefully referenced "Format example".
|
|
|
+
|
|
|
+ --------
|
|
|
+ ## 要求
|
|
|
+ 请根据${JSON.stringify(dArray)}以及##补充参考资料。输出格式和内容要求参考##输出格式与要求
|
|
|
+
|
|
|
+ --------
|
|
|
+ ## 输出格式与要求
|
|
|
+ [
|
|
|
+ {
|
|
|
+ detail: "面向学生的任务描述",
|
|
|
+ elist:[
|
|
|
+ {"value":"评价名字1","detail":"评价维度1","score":5},
|
|
|
+ {"value":"评价名字2","detail":"评价维度2","score":5},
|
|
|
+ {"value":"评价名字3","detail":"评价维度3","score":5}
|
|
|
+ ],//至少3条评价标准,这个评价是教师用来评价学生表现的,需要包含评价维度,以及该维度中教师期待学生的表现,句式为学生应该能....
|
|
|
+ toolChoose: [
|
|
|
+ {
|
|
|
+ tool: "工具", //电子白板,文档,思维导图,表格,作业提交中选择其中一个工具
|
|
|
+ detail: "工具描述"
|
|
|
+ }
|
|
|
+ ] //可0~2个工具
|
|
|
+ }
|
|
|
+ ]
|
|
|
+
|
|
|
+ --------
|
|
|
+ ## 补充参考资料
|
|
|
+ 补充资料:${url.join(",")}
|
|
|
+ 补充描述:${_this.courseText2}
|
|
|
+
|
|
|
+ --------
|
|
|
+ ## 示例
|
|
|
+ [
|
|
|
+ {
|
|
|
+ detail: "面向学生的任务描述",
|
|
|
+ elist:[
|
|
|
+ {"value":"评价名字1","detail":"评价维度1", "score": 5},
|
|
|
+ {"value":"评价名字2","detail":"评价维度2", "score": 5},
|
|
|
+ {"value":"评价名字3","detail":"评价维度3", "score": 5}
|
|
|
+ ],
|
|
|
+ toolChoose: [
|
|
|
+ {
|
|
|
+ tool:"电子白板",
|
|
|
+ detail: "工具描述"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ tool:"思维大图",
|
|
|
+ detail: "工具描述"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ detail: "面向学生的任务描述",
|
|
|
+ elist:[
|
|
|
+ {"value":"评价名字1","detail":"评价维度1", "score": 5},
|
|
|
+ {"value":"评价名字2","detail":"评价维度2", "score": 5},
|
|
|
+ {"value":"评价名字3","detail":"评价维度3", "score": 5}
|
|
|
+ ],
|
|
|
+ toolChoose: []
|
|
|
+ },
|
|
|
+ {
|
|
|
+ detail: "面向学生的任务描述",
|
|
|
+ elist:[
|
|
|
+ {"value":"评价名字1","detail":"评价维度1", "score": 5},
|
|
|
+ {"value":"评价名字2","detail":"评价维度2", "score": 5},
|
|
|
+ {"value":"评价名字3","detail":"评价维度3", "score": 5}
|
|
|
+ ],
|
|
|
+ toolChoose: [
|
|
|
+ {
|
|
|
+ tool:"文档",
|
|
|
+ detail: "工具描述"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]`
|
|
|
+
|
|
|
+ _this.aiGet3(msg, callback)
|
|
|
}
|
|
|
- _this.unitJson2 = JSON.parse(JSON.stringify(_this.unitJson))
|
|
|
- _this.$forceUpdate();
|
|
|
- callback ? callback() : ''
|
|
|
}).catch(function (error) {
|
|
|
_this.loading = false
|
|
|
console.log(error);
|
|
@@ -12426,12 +12509,47 @@ export default {
|
|
|
let tArray = JSON.parse(data.choices[0].message.content)
|
|
|
// _this.unitJson[0].chapterInfo[0].task = []
|
|
|
|
|
|
+ let toolsJson = {
|
|
|
+ "电子白板":{ tool:1,type:1},
|
|
|
+ "文档": { tool:52,type:1},
|
|
|
+ "思维导图": { tool:3,type:1},
|
|
|
+ "表格": { tool:0,type:1},
|
|
|
+ "作业提交": { tool:16,type:1}
|
|
|
+ }
|
|
|
for (var i = 0; i < tArray.length; i++) {
|
|
|
let _task = tArray[i]
|
|
|
+ _this.unitJson[0].chapterInfo[0].taskJson[i].taskDetail = _task.detail
|
|
|
+ _this.unitJson[0].chapterInfo[0].taskJson[i].eList = _task.elist
|
|
|
+ _this.unitJson[0].chapterInfo[0].taskJson[i].toolChoose = []
|
|
|
+ if(_task.toolChoose.length){
|
|
|
+ for(var j = 0;j < _task.toolChoose.length; j++){
|
|
|
+ _this.unitJson[0].chapterInfo[0].taskJson[i].toolChoose.push(
|
|
|
+ {
|
|
|
+ tool: [toolsJson[_task.toolChoose[j].tool].tool],
|
|
|
+ toolDetail: _task.toolChoose[j].detail,
|
|
|
+ toolType: toolsJson[_task.toolChoose[j].tool].type,
|
|
|
+ askCount: 1,
|
|
|
+ askTitle: "",
|
|
|
+ askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
|
|
|
+ },
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ _this.unitJson[0].chapterInfo[0].taskJson[i].toolChoose.push(
|
|
|
+ {
|
|
|
+ tool: [],
|
|
|
+ toolDetail: "",
|
|
|
+ toolType: 0,
|
|
|
+ askCount: 1,
|
|
|
+ askTitle: "",
|
|
|
+ askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
|
|
|
+ },
|
|
|
+ )
|
|
|
+ }
|
|
|
}
|
|
|
+ _this.unitJson2 = JSON.parse(JSON.stringify(_this.unitJson))
|
|
|
+ _this.$forceUpdate();
|
|
|
}
|
|
|
- _this.unitJson2 = JSON.parse(_this.unitJson)
|
|
|
- _this.$forceUpdate();
|
|
|
callback ? callback() : ''
|
|
|
}).catch(function (error) {
|
|
|
_this.loading = false
|