|
@@ -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() {
|