lsc há 11 meses atrás
pai
commit
2269f02bc5

+ 1 - 1
dist/index.html

@@ -32,7 +32,7 @@
       width: 100%;
       background: #e6eaf0;
       font-family: '黑体';
-    }</style><link href=./static/css/app.2b494c2340287468dd514d8f7866093e.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.eb26ca5b19390ddf3503.js></script><script type=text/javascript src=./static/js/app.fe74e4a9c85cf2122c40.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.e894e382a23819fea217dd80e90753cb.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.571c38d63f24b1ae9e16.js></script><script type=text/javascript src=./static/js/vendor.eb26ca5b19390ddf3503.js></script><script type=text/javascript src=./static/js/app.df3f92f3d89bdf07183a.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.e894e382a23819fea217dd80e90753cb.css


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.e894e382a23819fea217dd80e90753cb.css.map


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.df3f92f3d89bdf07183a.js


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.df3f92f3d89bdf07183a.js.map


Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/manifest.571c38d63f24b1ae9e16.js.map


+ 1 - 1
src/common/axios.config.js

@@ -1,6 +1,6 @@
 import axios from "axios"
 import qs from "qs"
-axios.defaults.timeout = 90000   //响应时间
+axios.defaults.timeout = 180000   //响应时间
 axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';        //配置请求头
 axios.defaults.baseURL = process.env.NODE_HOST;   //配置接口地址
 console.log(process.env)

+ 123 - 5
src/components/pages/aiAddCourse/addCourse.vue

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

Alguns ficheiros não foram mostrados porque muitos ficheiros mudaram neste diff