mo 4 years ago
parent
commit
81ee50dd7c

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-ac42450a.c73a40c5.js


+ 15 - 2
src/views/teamBuild/components/teamBaseInfo.vue

@@ -868,8 +868,21 @@ export default {
     chioseSchool (val) { },
     gotoNext (num) {
       // 1.效验数据    判断是否数据正常=> 正常放入store存储
-      //                       不正常=>  进行效验提示
-
+      // 不正常=>  进行效验提示
+      let check = [];
+      for (let i in this.checkList) {
+        if (this.checkList[i] && i != 'submit') {
+          check.push(this.checkList[i].ischeck)
+        }
+      }
+      let checkFlag = false
+      check.forEach(item => {
+        checkFlag = checkFlag || item
+      })
+      if (!checkFlag) {
+        this.$message.error('请至少选择一种乐团课程类型')
+        return
+      }
       this.$refs["topinfo"].validate((valid, object) => {
         if (!valid) {
           this.$message.error("请填写建团必要参数");

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