lsc 1 рік тому
батько
коміт
c65b926406
1 змінених файлів з 6 додано та 2 видалено
  1. 6 2
      src/components/pages/student/addCourse.vue

+ 6 - 2
src/components/pages/student/addCourse.vue

@@ -7037,7 +7037,9 @@ export default {
       this.ajax
         .get(this.$store.state.api + "getCourseTemplateTs", params)
         .then((res) => {
-          this.templateArray = res.data[0];
+          this.templateArray = res.data[0].filter(el => {
+            return el.oid
+          });
           this.getTemplateOrg();
           this.$forceUpdate();
         })
@@ -7051,7 +7053,9 @@ export default {
         .get(this.$store.state.api + "getCourseTemplateTs", params)
         .then((res) => {
           if (res.data[0].length) {
-            let ta = res.data[0]
+            let ta = res.data[0].filter(el => {
+            return el.oid
+          });
             let newArr2 = this.templateArray.filter(x => !ta.some(y => y.id === x.id));
             this.templateArray = [...newArr2, ...this.templateArray];
           }