Prechádzať zdrojové kódy

修改点击活动信息时没填写东西直接返回页面

zengyicheng 2 rokov pred
rodič
commit
dbe4ddd080

+ 16 - 5
src/components/pages/race/addRace.vue

@@ -183,7 +183,7 @@ export default {
         title: "",
         type: [],
         cover: [],
-        autor:[],
+        autor: [],
         tableData: [],
         courseText: "",
         data: [],
@@ -244,7 +244,7 @@ export default {
         } else if (this.raceInfo.tableData.length == 0) {
           this.$message.error("请添加协作者");
           return;
-        } else if (this.raceInfo.courseText.length == 0) {
+        } else if (this.raceInfo.courseText == "") {
           this.$message.error("请填写项目简介");
           return;
         } else if (this.raceInfo.data.length == 0) {
@@ -271,7 +271,7 @@ export default {
         } else if (this.raceInfo.tableData.length == 0) {
           this.$message.error("请添加协作者");
           return;
-        } else if (this.raceInfo.courseText.length == 0) {
+        } else if (this.raceInfo.courseText == "") {
           this.$message.error("请填写项目简介");
           return;
         } else if (this.raceInfo.data.length == 0) {
@@ -324,7 +324,7 @@ export default {
       } else if (this.raceInfo.tableData.length == 0) {
         this.$message.error("请添加作者");
         return;
-      } else if (this.raceInfo.courseText.length == 0) {
+      } else if (this.raceInfo.courseText == "") {
         this.$message.error("请填写项目简介");
         return;
       } else if (this.raceInfo.data.length == 0) {
@@ -452,7 +452,18 @@ export default {
       }
     },
     isGoto() {
-      this.dialogVisible1 = true;
+      if (
+        this.raceInfo.title != "" ||
+        this.raceInfo.type.length > 0 ||
+        this.receInfo.cover.length > 0 ||
+        this.raceInfo.tableData.length > 0 ||
+        this.raceInfo.courseText != "" ||
+        this.raceInfo.data.length > 0
+      ) {
+        this.dialogVisible1 = true;
+      } else {
+        this.goTo("/eventCenter?steps=" + "2");
+      }
     },
   },
   created() {

+ 16 - 2
src/components/pages/race/addRace/raceDetail.vue

@@ -40,7 +40,21 @@
               <img src="../../../../assets/icon/race/progress.png" alt="" />
             </div>
             <div class="stepRightNav" @click="jump('third')">
-              <div>作者</div>
+              <div>联系人</div>
+              <div class="isFinishCss" v-if="raceDetail.autor.length > 0">
+                <div class="isFinish">
+                  <img src="../../../../assets/icon/race/finish.png" alt="" />
+                </div>
+                <div>已填写</div>
+              </div>
+            </div>
+          </div>
+          <div class="steps">
+            <div>
+              <img src="../../../../assets/icon/race/progress.png" alt="" />
+            </div>
+            <div class="stepRightNav" @click="jump('sixth')">
+              <div>协作者</div>
               <div class="isFinishCss" v-if="raceDetail.tableData.length > 0">
                 <div class="isFinish">
                   <img src="../../../../assets/icon/race/finish.png" alt="" />
@@ -292,7 +306,7 @@
           </div>
           <div class="whiteBg" style="border-radius: 0">
             <div class="right_first">
-              <div class="right_title" id="third">协作者</div>
+              <div class="right_title" id="sixth">协作者</div>
               <div
                 class="addPeople"
                 @click="addAutor(1)"