lsc 2 年之前
父節點
當前提交
d435cbd61e

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.595c9e637e4a116f144b1fdf2a6ab239.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.5ddcd90996c548f48451.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.450d8375603f6e43e6d29dd69d4bd9a1.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.ffb5c36147606beb8a39.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/app.450d8375603f6e43e6d29dd69d4bd9a1.css


文件差異過大導致無法顯示
+ 0 - 0
dist/static/css/app.450d8375603f6e43e6d29dd69d4bd9a1.css.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.5ddcd90996c548f48451.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.ffb5c36147606beb8a39.js


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/app.ffb5c36147606beb8a39.js.map


文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 18 - 4
src/components/pages/addCourse.vue

@@ -3397,6 +3397,20 @@ export default {
           });
       }
     },
+    steps(newValue) {
+      if (newValue == 4) {
+        this.goTo(
+          "/course?userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+        );
+      }
+    }
   },
   methods: {
     setMan() {
@@ -6197,12 +6211,12 @@ export default {
     },
     pasteTask() {
       let iframe = top.document.querySelectorAll("#AIChat iframe")[0]
-      if(!iframe){
+      if (!iframe) {
         this.$message.error("请使用AI共创生成")
         return;
       }
       let copyData = iframe.contentWindow.copyData
-      if(!copyData || !copyData.tasksData || !copyData.tasksData.length){
+      if (!copyData || !copyData.tasksData || !copyData.tasksData.length) {
         this.$message.error("请使用AI共创生成")
         return;
       }
@@ -6239,12 +6253,12 @@ export default {
     },
     pasteStage() {
       let iframe = top.document.querySelectorAll("#AIChat iframe")[0]
-      if(!iframe){
+      if (!iframe) {
         this.$message.error("请使用AI共创生成")
         return;
       }
       let copyData = iframe.contentWindow.copyData
-      if(!copyData || !copyData.stageData || !copyData.stageData.length){
+      if (!copyData || !copyData.stageData || !copyData.stageData.length) {
         this.$message.error("请使用AI共创生成")
         return;
       }

+ 14 - 0
src/components/pages/easy/addCourse.vue

@@ -3458,6 +3458,20 @@ export default {
           });
       }
     },
+    steps(newValue) {
+      if (newValue == 4) {
+        this.goTo(
+          "/course?userid=" +
+          this.userid +
+          "&oid=" +
+          this.oid +
+          "&org=" +
+          this.org +
+          "&role=" +
+          this.role
+        );
+      }
+    }
   },
   methods: {
     setMan() {

+ 10 - 0
src/components/pages/student/addCourse.vue

@@ -4349,6 +4349,16 @@ export default {
           }
         }
         this.graphJson = gjson;
+      }else if (newValue == 5) {
+        this.goTo(
+          this.fpath +
+            "?userid=" +
+            this.userid +
+            "&oid=" +
+            this.oid +
+            "&org=" +
+            this.org + '&role=' + this.role 
+        );
       }
     },
     unitIndex(newValue, oldValue) {

+ 10 - 0
src/components/pages/studio/addCourse.vue

@@ -4347,6 +4347,16 @@ export default {
           }
         }
         this.graphJson = gjson;
+      }else if(newValue == 5){
+        this.goTo(
+          this.fpath +
+            "?userid=" +
+            this.userid +
+            "&oid=" +
+            this.oid +
+            "&org=" +
+            this.org + '&role=' + this.role 
+        );
       }
     },
     unitIndex(newValue, oldValue) {

部分文件因文件數量過多而無法顯示