mo vor 5 Jahren
Ursprung
Commit
1cb60969ca

+ 6 - 0
src/views/teamBuild/components/teamBaseInfo.vue

@@ -701,6 +701,12 @@ export default {
           this.addList = res.data;
         }
       });
+      // 获取维修技师
+      findTechnician().then(res => {
+        if (res.code == 200) {
+          this.technician = res.data;
+        }
+      })
     },
     chioseSchool (val) { },
     gotoNext (num) {

+ 1 - 1
src/views/teamBuild/teamSeting/components/setClassV2.vue

@@ -1408,7 +1408,7 @@ export default {
     },
     studentVisible (val) {
       if (!val) {
-        newClassVisible = false;
+        this.newClassVisible = false;
         this.activeListStudent = [];
       }
     },