zengyicheng 2 rokov pred
rodič
commit
0c47719cc7

+ 89 - 14
src/components/pages/race/addRace.vue

@@ -171,7 +171,7 @@
         <el-button type="primary" @click="dialogVisible2 = false"
           >继续填写</el-button
         >
-        <el-button  @click="isAddOrUpRace(1)">保存并离开</el-button>
+        <el-button @click="isAddOrUpRace(1)">保存并离开</el-button>
       </span>
     </el-dialog>
   </div>
@@ -201,7 +201,7 @@ export default {
       aid: this.$route.query.aid ? this.$route.query.aid : "",
       dialogVisible: false,
       dialogVisible1: false,
-      dialogVisible2:false,
+      dialogVisible2: false,
       isJump: 0,
       raceInfo: {
         title: "",
@@ -272,9 +272,35 @@ export default {
         } else if (this.raceInfo.data.length == 0) {
           this.$message.error("上传文件不能为空");
           return;
-        } else {
-          this.steps = steps;
+        } else if (this.raceInfo.type.length > 0) {
+          var t = 1;
+          var a = [
+            "24d162b0-d030-11ec-8c78-005056b86db5",
+            "264bd103-d030-11ec-8c78-005056b86db5",
+            "28d2c456-d030-11ec-8c78-005056b86db5",
+            "2ad17d24-d030-11ec-8c78-005056b86db5",
+          ];
+          for (var i = 0; i < this.raceInfo.type.length; i++) {
+            if ((t = 1)) {
+              if (this.raceInfo.type[i] != "") {
+                if (a.indexOf(this.raceInfo.type[i]) == -1) {
+                } else {
+                  t = 2;
+                }
+              }
+            }
+          }
+          if (t == 1) {
+            this.$message.error("案例组别不能为空");
+            return;
+          } else if (t == 2) {
+            this.steps = steps;
+          }
+          // this.$message.error("课程分类不能为空");
         }
+        //  else {
+        //   this.steps = steps;
+        // }
 
         // else if (this.raceInfo.tableData.length == 0) {
         //   this.$message.error("请添加协作者");
@@ -290,6 +316,7 @@ export default {
           this.$message.error("标题不能为空");
           return;
         } else if (this.raceInfo.type.length == 0) {
+          // this.$message.error("课程分类不能为空");
           this.$message.error("案例组别不能为空");
           return;
         } else if (this.raceInfo.autor.length == 0) {
@@ -301,9 +328,32 @@ export default {
         } else if (this.raceInfo.data.length == 0) {
           this.$message.error("上传文件不能为空");
           return;
-        } else {
-          this.dialogVisible1 = true;
-          this.steps++;
+        } else if (this.raceInfo.type.length > 0) {
+          var t = 1;
+          var a = [
+            "24d162b0-d030-11ec-8c78-005056b86db5",
+            "264bd103-d030-11ec-8c78-005056b86db5",
+            "28d2c456-d030-11ec-8c78-005056b86db5",
+            "2ad17d24-d030-11ec-8c78-005056b86db5",
+          ];
+          for (var i = 0; i < this.raceInfo.type.length; i++) {
+            if ((t = 1)) {
+              if (this.raceInfo.type[i] != "") {
+                if (a.indexOf(this.raceInfo.type[i]) == -1) {
+                } else {
+                  t = 2;
+                }
+              }
+            }
+          }
+          if (t == 1) {
+            this.$message.error("案例组别不能为空");
+            return;
+          } else if (t == 2) {
+            this.dialogVisible1 = true;
+            this.steps++;
+          }
+          // this.$message.error("课程分类不能为空");
         }
       } else {
         this.steps++;
@@ -338,11 +388,12 @@ export default {
     updateProExc(raceExc) {
       this.raceExceva = raceExc;
     },
-    isAddOrUpRace(t) {
+    isAddOrUpRace(q) {
       if (this.raceInfo.title == "") {
         this.$message.error("标题不能为空");
         return;
       } else if (this.raceInfo.type.length == 0) {
+        // this.$message.error("课程分类不能为空");
         this.$message.error("案例组别不能为空");
         return;
       } else if (this.raceInfo.autor.length == 0) {
@@ -354,12 +405,36 @@ export default {
       } else if (this.raceInfo.data.length == 0) {
         this.$message.error("上传文件不能为空");
         return;
-      }
-      this.isJump = t;
-      if (this.aid == "" || this.aid == undefined) {
-        this.addRace();
-      } else {
-        this.updateRace();
+      } else if (this.raceInfo.type.length > 0) {
+        var t = 1;
+        var a = [
+          "24d162b0-d030-11ec-8c78-005056b86db5",
+          "264bd103-d030-11ec-8c78-005056b86db5",
+          "28d2c456-d030-11ec-8c78-005056b86db5",
+          "2ad17d24-d030-11ec-8c78-005056b86db5",
+        ];
+        for (var i = 0; i < this.raceInfo.type.length; i++) {
+          if ((t = 1)) {
+            if (this.raceInfo.type[i] != "") {
+              if (a.indexOf(this.raceInfo.type[i]) == -1) {
+              } else {
+                t = 2;
+              }
+            }
+          }
+        }
+        if (t == 1) {
+          this.$message.error("案例组别不能为空");
+          return;
+        } else if (t == 2) {
+          this.isJump = q;
+          if (this.aid == "" || this.aid == undefined) {
+            this.addRace();
+          } else {
+            this.updateRace();
+          }
+        }
+        // this.$message.error("课程分类不能为空");
       }
     },
     isAddOrUpRace1(t) {

+ 18 - 6
src/components/pages/race/addRace/projectProcess.vue

@@ -45,7 +45,7 @@
                   v-model="sa.allTime"
                   @input="upRacePro"
                   placeholder="输入阶段总课时"
-                  @change="isNumber($event,saIndex,'', 0)"
+                  @change="isNumber($event, saIndex, '', 0)"
                 ></el-input>
               </div>
               <div
@@ -80,7 +80,7 @@
                       v-model="race.actTime"
                       placeholder="输入任务课时"
                       @input="upRacePro"
-                      @change="isNumber($event,saIndex,raIndex, 1)"
+                      @change="isNumber($event, saIndex, raIndex, 1)"
                     ></el-input>
                   </div>
                   <div
@@ -688,7 +688,7 @@ export default {
     addImg(e) {
       var el = e.currentTarget;
       el.getElementsByTagName("input")[0].click();
-      e.target.value = ''
+      e.target.value = "";
     },
     jump(t) {
       var a = document.getElementById(t);
@@ -715,18 +715,30 @@ export default {
         }
       }
     },
-    isNumber(e,i,j,t) {
+    isNumber(e, i, j, t) {
       var numReg = /^[0-9]*$/;
       var numRe = new RegExp(numReg);
       if (!numRe.test(e)) {
         this.$message.error("请输入数字!");
-        if(t == 0){
+        if (t == 0) {
           this.racePro.stageBox[i].allTime = "";
-        }else{
+        } else {
           this.racePro.stageBox[i].actBox[j].actTime = "";
         }
         return;
       }
+      if (t == 0) {
+        var a = 0;
+        for (var k = 0; k < this.racePro.stageBox[i].actBox.length; k++) {
+          if (this.racePro.stageBox[i].actBox[k].actTime != "") {
+            a += parseInt(this.racePro.stageBox[i].actBox[k].actTime);
+          }
+        }
+        if(parseInt(e) != a){
+          this.$message.error("阶段总课时需等于于阶段下所有任务的课时总数之和!");
+          this.racePro.stageBox[i].allTime = "";
+        }
+      }
     },
     upRacePro() {
       this.$emit("upRacePro", this.racePro);

+ 23 - 7
src/components/pages/race/addRace/raceDetail.vue

@@ -94,14 +94,16 @@
         </div>
         <div class="right">
           <div class="whiteBg">
-            <div class="right_title" id="first"><span style="color:red;">*</span>项目基本信息</div>
+            <div class="right_title" id="first">
+              <span style="color: red">*</span>项目基本信息
+            </div>
             <div class="basic_box">
               <div class="big_box">
                 <div class="left_first">
                   <div>
                     <div>
                       <div class="bInfo_title" style="margin-bottom: 15px">
-                         案例名称
+                        案例名称
                       </div>
                       <div style="display: flex; margin-right: 20px">
                         <img
@@ -127,6 +129,7 @@
                         >
                           <span>{{ item.name }}</span>
                           <el-checkbox-group
+                            :class="item.name == '案例组别' ? 'radiusCss' : ''"
                             v-model="raceDetail.type"
                             @change="updateTitle"
                           >
@@ -148,7 +151,9 @@
           </div>
           <div class="whiteBg" style="border-radius: 0">
             <div class="right_first">
-              <div class="right_title" id="second"><span style="color:red;">*</span>案例封面设置</div>
+              <div class="right_title" id="second">
+                <span style="color: red">*</span>案例封面设置
+              </div>
               <div class="fmBox">
                 <div>
                   <div class="bInfo_title" style="margin-top: 0 !important">
@@ -200,7 +205,9 @@
           </div>
           <div class="whiteBg" style="border-radius: 0">
             <div class="right_first">
-              <div class="right_title" id="third"><span style="color:red;">*</span>联系人</div>
+              <div class="right_title" id="third">
+                <span style="color: red">*</span>联系人
+              </div>
               <div
                 class="addPeople"
                 @click="addAutor(0)"
@@ -299,7 +306,9 @@
           </div>
           <div class="whiteBg" style="border-radius: 0">
             <div class="right_first">
-              <div class="right_title" id="sixth"><span style="color:red;">*</span>协作者</div>
+              <div class="right_title" id="sixth">
+                <span style="color: red">*</span>协作者
+              </div>
               <div
                 class="addPeople"
                 @click="addAutor(1)"
@@ -396,7 +405,9 @@
           </div>
           <div class="whiteBg" style="border-radius: 0">
             <div class="right_first">
-              <div class="right_title" id="fouth"><span style="color:red;">*</span>项目简介</div>
+              <div class="right_title" id="fouth">
+                <span style="color: red">*</span>项目简介
+              </div>
               <div class="secondTop">
                 <el-input
                   type="textarea"
@@ -426,7 +437,9 @@
           </div>
           <div class="whiteBg" style="border-radius: 0">
             <div class="right_first">
-              <div class="right_title" id="fivth"><span style="color:red;">*</span>文件上传</div>
+              <div class="right_title" id="fivth">
+                <span style="color: red">*</span>文件上传
+              </div>
               <div class="secondTop">
                 <div>
                   <div class="basic_box1" style="width: 100%">
@@ -2177,4 +2190,7 @@ export default {
   overflow: hidden;
   text-overflow: ellipsis;
 }
+.radiusCss >>> .el-checkbox__inner {
+  border-radius: 50% !important;
+}
 </style>

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 499 - 484
src/components/pages/race/eventCenter/anliDetail.vue


+ 65 - 24
src/components/pages/race/eventCenter/myAnli.vue

@@ -118,7 +118,16 @@
             当前状态:{{ an.state == 0 ? "未提交" : "已提交" }}
           </div>
           <div class="bottomRight">
-            <div class="rightButton" @click="updateState(an.id)">提交</div>
+            <div
+              class="rightButton"
+              @click="updateState(an.id, 0)"
+              v-if="an.state == 0"
+            >
+              提交
+            </div>
+            <div class="rightButton" @click="updateState(an.id, 1)" v-else>
+              取消提交
+            </div>
             <div class="rightButton" @click="exportAnli(an)">导出</div>
             <!-- <div class="rightButton" @click="goTo('/anliDetail?aid=' + an.id)">
               开始教学
@@ -174,30 +183,62 @@ export default {
           console.error(err);
         });
     },
-    updateState(id) {
-      this.$confirm("确定提交此案例吗?", "提示", {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning",
-      })
-        .then(() => {
-          let params = {
-            id: id,
-          };
-          this.ajax
-            .get(this.$store.state.api + "updateRaceState", params)
-            .then((res) => {
-              this.$message({
-                message: "提交成功",
-                type: "success",
+    updateState(id, t) {
+      var a = 0;
+      if (t == 0) {
+        a = 1;
+      }
+      if (t == 0) {
+        this.$confirm("确定提交此案例吗?", "提示", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
+        })
+          .then(() => {
+            let params = {
+              id: id,
+              s: a,
+            };
+            this.ajax
+              .get(this.$store.state.api + "updateRaceState", params)
+              .then((res) => {
+                this.$message({
+                  message: "提交成功",
+                  type: "success",
+                });
+                this.selectAnLi();
+              })
+              .catch((err) => {
+                console.error(err);
               });
-              this.selectAnLi();
-            })
-            .catch((err) => {
-              console.error(err);
-            });
+          })
+          .catch(() => {});
+      } else {
+        this.$confirm("确定取消提交此案例吗?", "提示", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
         })
-        .catch(() => {});
+          .then(() => {
+            let params = {
+              id: id,
+              s: a,
+            };
+            this.ajax
+              .get(this.$store.state.api + "updateRaceState", params)
+              .then((res) => {
+                this.$message({
+                  message: "取消提交成功",
+                  type: "success",
+                });
+                this.selectAnLi();
+              })
+              .catch((err) => {
+                console.error(err);
+              });
+          })
+          .catch(() => {});
+      }
     },
     deleteAnli(id) {
       this.$confirm("确定删除此案例吗?", "提示", {
@@ -406,7 +447,7 @@ export default {
   .xmjj {
     width: 70% !important;
   }
-  
+
   .noAnliBox {
     width: 300px !important;
   }

Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov