lsc 7 月之前
父节点
当前提交
6675056de2

+ 1 - 1
dist/index.html

@@ -32,7 +32,7 @@
       width: 100%;
       background: #e6eaf0;
       font-family: '黑体';
-    }</style><link href=./static/css/app.950b02e0ab4f6fffc20037eab06db226.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.35dfb1d95a63059f336f.js></script><script type=text/javascript src=./static/js/app.4758f15f922a73b6724b.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.ce6bb7f35d09da84db68a9cb6255e879.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.35dfb1d95a63059f336f.js></script><script type=text/javascript src=./static/js/app.25882fc7d3a4ed57f026.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.ce6bb7f35d09da84db68a9cb6255e879.css


文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.ce6bb7f35d09da84db68a9cb6255e879.css.map


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.25882fc7d3a4ed57f026.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.25882fc7d3a4ed57f026.js.map


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/manifest.571c38d63f24b1ae9e16.js.map


+ 3 - 0
src/components/pages/aiAddCourse/addCourse.vue

@@ -7604,6 +7604,9 @@ export default {
       }
     },
     steps(newValue, old) {
+      if(newValue == 2){
+        this.steps = old
+      }
       if (newValue == 4) {
         let cPan = 1;
         for (var i = 0; i < this.unitJson.length; i++) {

+ 15 - 0
src/components/pages/test/check/index.vue

@@ -1268,6 +1268,21 @@ export default {
         .then(async (res) => {
           this.testJson = res.data[0][0]
           console.log('this.testJson',JSON.parse(JSON.stringify(this.testJson)));
+
+          let a = ''
+          if(this.testJson.juriP){
+              a = this.testJson.juriP
+          }
+          if(this.testJson.juriP2){
+              if(a){
+                  a = this.testJson.juriP+','+this.testJson.juriP2
+              }else {
+                  a = this.testJson.juriP2
+              }
+          }
+          this.testJson.juriP = a
+
+
           if (this.testJson.juriP) {
             let ajuri2 =  this.testJson.juri2.split (',');
             this.TeachingOptions = ajuri2.map((key, index) => ({

+ 14 - 1
src/components/pages/test/index.vue

@@ -857,7 +857,20 @@ export default {
                     this.isLoading = false;
                     this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
                     this.course = res.data[0];
-
+                    for(var i = 0; i < this.course.length; i++) {
+                        let a = ''
+                        if(this.course[i].juriP){
+                            a = this.course[i].juriP
+                        }
+                        if(this.course[i].juriP2){
+                            if(a){
+                                a = this.course[i].juriP+','+this.course[i].juriP2
+                            }else {
+                                a = this.course[i].juriP2
+                            }
+                        }
+                        this.course[i].juriP = a
+                    }
                 })
                 .catch((err) => {
                     this.isLoading = false;

部分文件因为文件数量过多而无法显示