lsc há 1 ano atrás
pai
commit
b707faec50
1 ficheiros alterados com 16 adições e 0 exclusões
  1. 16 0
      src/components/pages/student/addCourse.vue

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

@@ -7038,9 +7038,25 @@ export default {
         .get(this.$store.state.api + "getCourseTemplateTs", params)
         .then((res) => {
           this.templateArray = res.data[0];
+          this.getTemplateOrg();
+          this.$forceUpdate();
         })
         .catch((err) => {});
     },
+    getTemplateOrg() {
+      let params = {
+        oid: this.org,
+      };
+      this.ajax
+        .get(this.$store.state.api + "getCourseTemplateTs", params)
+        .then((res) => {
+          if (res.data[0].length) {
+            this.templateArray = [...res.data[0], ...this.templateArray];
+          }
+          this.$forceUpdate();
+        })
+        .catch((err) => { });
+    },
     clearChoose() {
       this.clearArray.splice(this.templateC.id, 1);
       this.dialogVisible2 = false;