lsc 1 年之前
父節點
當前提交
cef104b5b5

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.710ca6f28c9219a94bf7e01bbfcc32ac.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.e99f201a95f8ac9e4d8f.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.97643a57c6377b3ae98a0b41646ebe56.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.9e46af4a15bcb3cfccd5.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.710ca6f28c9219a94bf7e01bbfcc32ac.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.710ca6f28c9219a94bf7e01bbfcc32ac.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.97643a57c6377b3ae98a0b41646ebe56.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.97643a57c6377b3ae98a0b41646ebe56.css.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.9e46af4a15bcb3cfccd5.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.9e46af4a15bcb3cfccd5.js.map


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.e99f201a95f8ac9e4d8f.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


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

@@ -103,6 +103,8 @@
                   <span style="color: rgb(15, 126, 255)">添加课程</span>
                 </el-breadcrumb-item>
               </el-breadcrumb>
+              <!-- <el-button type="primary" @click="pasteStage" size="small" v-if="steps == 3 && (!cid || cid && userid == courseUserid)" style="margin-left: 20px;">智能粘贴</el-button> -->
+              
             </div>
             <div v-if="steps == 1 || steps == 2 || steps == 3" class="stepsWord">
               {{
@@ -6073,6 +6075,18 @@ export default {
       this.testJson = isTestJson
       this.$forceUpdate();
     },
+    pasteStage(){
+      let iframe = top.document.querySelectorAll("#AIChat iframe")[0]
+      if(!iframe){
+        this.$message.error("请使用AI共创生成")
+        return;
+      }
+      let copyData = iframe.contentWindow.copyData
+      if(!copyData || !copyData.stageTasksData.length || copyData.stageTasksData[0].stage == '' || !copyData.stageTasksData[0].tasks.length){
+        this.$message.error("请使用AI共创生成")
+        return;
+      }
+    },
     addAnswer() {
       if (this.answerQ == "") {
         this.$message.error("请输入您想要问的问题");

+ 79 - 8
src/components/pages/course.vue

@@ -25,9 +25,9 @@
       </div>
       <div class="pType_box all_choose"  v-if="oid == '69893dca-1d47-11ed-8c78-005056b86db5'">
         <span>类型</span>
-        <el-radio-group @change="CourseType2Change" v-model="pTypeCheckName" style="display: flex; align-items: center">
+        <el-radio-group v-model="pTypeCheckName" style="display: flex; align-items: center">
           <div class="all_choose" style="width: 100px" v-for="(item, index) in CourseType2" :key="index">
-            <el-radio :label="item.name">{{
+            <el-radio :label="item.name" @click.native.prevent="CourseType2Click(item.name)">{{
               item.name
             }}</el-radio>
           </div>
@@ -334,6 +334,31 @@ export default {
           this.pTypeCheck.push(...typeA.id);
         }
       }
+      this.typea = ""
+      this.typeb = ""
+      this.typed = ""
+      this.getCourse();
+    },
+    CourseType2Click(val){
+      this.pTypeCheck = [];
+      this.typeE = []
+      if(val === this.pTypeCheckName){
+        this.pTypeCheckName = ''
+      }else{
+        this.pTypeCheckName = val
+        for (var i = 0; i < this.CourseType2.length; i++) {
+          let typeA = this.CourseType2[i];
+          if (val.indexOf(typeA.name) != -1) {
+            this.pTypeCheck.push(...typeA.id);
+            this.typeE = [...typeA.id]
+          }
+        }
+      }
+      
+      this.typea = ""
+      this.typeb = ""
+      this.typed = ""
+      this.getCourse();
     },
     goToCourse(courseId) {
       if (courseId) {
@@ -463,7 +488,11 @@ export default {
       if (typeName == "年级") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
-            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              return
+            }else{
+              this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            }
           } else {
             this.typeE.push(typeid);
             if (this.typea != "") {
@@ -473,6 +502,9 @@ export default {
         } else {
           if (this.typea == typeid) {
             this.typea = "";
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              this.typeE.push(ftypeId);
+            }
           } else {
             this.typea = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
@@ -483,7 +515,11 @@ export default {
       } else if (typeName == "专栏") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
-            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              return
+            }else{
+              this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            }
           } else {
             this.typeE.push(typeid);
             if (this.typeb != "") {
@@ -493,6 +529,9 @@ export default {
         } else {
           if (this.typeb == typeid) {
             this.typeb = "";
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              this.typeE.push(ftypeId);
+            }
           } else {
             this.typeb = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
@@ -503,7 +542,11 @@ export default {
       } else if (typeName == "栏目") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
-            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              return
+            }else{
+              this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            }
           } else {
             this.typeE.push(typeid);
             if (this.typeb != "") {
@@ -513,6 +556,9 @@ export default {
         } else {
           if (this.typeb == typeid) {
             this.typeb = "";
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              this.typeE.push(ftypeId);
+            }
           } else {
             this.typeb = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
@@ -523,7 +569,11 @@ export default {
       } else if (typeName == "主题") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
-            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+                        if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              return
+            }else{
+              this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            }
           } else {
             this.typeE.push(typeid);
             if (this.typeb != "") {
@@ -533,6 +583,9 @@ export default {
         } else {
           if (this.typeb == typeid) {
             this.typeb = "";
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              this.typeE.push(ftypeId);
+            }
           } else {
             this.typeb = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
@@ -543,7 +596,11 @@ export default {
       } else if (typeName == "学院") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
-            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+                        if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              return
+            }else{
+              this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            }
           } else {
             this.typeE.push(typeid);
             if (this.typeb != "") {
@@ -553,6 +610,9 @@ export default {
         } else {
           if (this.typeb == typeid) {
             this.typeb = "";
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              this.typeE.push(ftypeId);
+            }
           } else {
             this.typeb = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
@@ -563,7 +623,11 @@ export default {
       } else if (typeName == "学科") {
         if (type == 1) {
           if (this.typeE.indexOf(typeid) != -1) {
-            this.typeE.splice(this.typeE.indexOf(typeid), 1);
+                        if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              return
+            }else{
+              this.typeE.splice(this.typeE.indexOf(typeid), 1);
+            }
           } else {
             this.typeE.push(typeid);
             if (this.typed != "") {
@@ -573,6 +637,9 @@ export default {
         } else {
           if (this.typed == typeid) {
             this.typed = "";
+            if(this.oid == '69893dca-1d47-11ed-8c78-005056b86db5'){
+              this.typeE.push(ftypeId);
+            }
           } else {
             this.typed = typeid;
             if (this.typeE.indexOf(ftypeId) != -1) {
@@ -1544,5 +1611,9 @@ export default {
 .pType_box {
   margin-top: 0;
 }
+.pType_box >>> .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
+  -webkit-box-shadow: none !important;
+  box-shadow: none !important;
+}
 
 </style>

Some files were not shown because too many files changed in this diff