Browse Source

组织分类

zengyicheng 2 years ago
parent
commit
51f10ea1c5
2 changed files with 57 additions and 7 deletions
  1. 28 3
      src/components/pages/addCourse.vue
  2. 29 4
      src/components/pages/course.vue

+ 28 - 3
src/components/pages/addCourse.vue

@@ -68,7 +68,7 @@
                 style="margin-top: 15px"
               >
                 <el-breadcrumb-item
-                  :to="{ path: '/course?userid=' + userid + '&oid=' + oid }"
+                  :to="{ path: '/course?userid=' + userid + '&oid=' + oid  + '&org=' + org}"
                   >项目管理</el-breadcrumb-item
                 >
                 <el-breadcrumb-item>
@@ -1898,7 +1898,7 @@
             <button
               class="info_btn"
               v-if="steps == 1"
-              @click="goTo('/course?userid=' + userid + '&oid=' + oid)"
+              @click="goTo('/course?userid=' + userid + '&oid=' + oid + '&org=' + org)"
             >
               返回项目
             </button>
@@ -2649,6 +2649,7 @@ export default {
       searchTN: "",
       userid: this.$route.query.userid,
       oid: this.$route.query.oid,
+      org: this.$route.query.org,
       cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
       cover: [], //项目封面
       myWord: [],
@@ -2912,7 +2913,7 @@ export default {
     },
     lastSteps() {
       if (this.steps == 4) {
-        this.goTo("/course?userid=" + this.userid + "&oid=" + this.oid);
+        this.goTo("/course?userid=" + this.userid + "&oid=" + this.oid  + '&org=' + this.org);
       } else {
         if (this.cidType == 0) {
           this.steps--;
@@ -4784,6 +4785,7 @@ export default {
             }
           }
           this.selectTypeByOid();
+          this.selectTypeByOrg();
         })
         .catch((err) => {
           console.error(err);
@@ -4811,6 +4813,29 @@ export default {
           console.error(err);
         });
     },
+    selectTypeByOrg() {
+      let params = {
+        oid: this.org,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectTypeByOrg", params)
+        .then((res) => {
+          for (var i = 0; i < res.data[0].length; i++) {
+            for (var j = 0; j < res.data[1].length; j++) {
+              if (res.data[0][i].id == res.data[1][j].pid) {
+                if (!this.CourseTypeJson[res.data[0][i].id]) {
+                  this.CourseTypeJson[res.data[0][i].id] = [];
+                }
+                this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
+              }
+            }
+          }
+          this.$forceUpdate();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
     OtherMb(type) {
       this.typeMode = type;
       setTimeout(() => {

+ 29 - 4
src/components/pages/course.vue

@@ -9,7 +9,7 @@
         <el-button
           type="primary"
           class="bgColor"
-          @click="goTo('/course/addCourse?userid=' + userid + '&oid=' + oid)"
+          @click="goTo('/course/addCourse?userid=' + userid + '&oid=' + oid + '&org=' + org)"
           >添加项目</el-button
         >
       </div>
@@ -93,7 +93,7 @@
                       '&userid=' +
                       userid +
                       '&oid=' +
-                      oid
+                      oid+ '&org=' + org
                   )
                 "
               >
@@ -107,7 +107,7 @@
                       '&userid=' +
                       userid +
                       '&oid=' +
-                      oid
+                      oid+ '&org=' + org
                   )
                 "
               >
@@ -193,7 +193,7 @@
                     '&userid=' +
                     userid +
                     '&oid=' +
-                    oid
+                    oid+ '&org=' + org
                 )
               "
             >
@@ -234,6 +234,7 @@ export default {
       group: "",
       userid: this.$route.query.userid,
       oid: this.$route.query.oid,
+      org: this.$route.query.org,
       Juri: "",
       groupList: [],
       JuriList: [],
@@ -519,6 +520,7 @@ export default {
             }
           }
           this.selectTypeByOid();
+          this.selectTypeByOrg();
         })
         .catch((err) => {
           console.error(err);
@@ -547,6 +549,29 @@ export default {
           console.error(err);
         });
     },
+    selectTypeByOrg() {
+      let params = {
+        oid: this.org,
+      };
+      this.ajax
+        .get(this.$store.state.api + "selectTypeByOrg", params)
+        .then((res) => {
+          for (var i = 0; i < res.data[0].length; i++) {
+            for (var j = 0; j < res.data[1].length; j++) {
+              if (res.data[0][i].id == res.data[1][j].pid) {
+                if (!this.CourseTypeJson[res.data[0][i].id]) {
+                  this.CourseTypeJson[res.data[0][i].id] = [];
+                }
+                this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
+              }
+            }
+          }
+          this.$forceUpdate();
+        })
+        .catch((err) => {
+          console.error(err);
+        });
+    },
     openCourse() {
       this.dialogVisibleCourse = true;
       this.getTeamCourse();