项目修复

dev_2022-05-11
yujialong 3 years ago
parent 113e324bd2
commit a3a91e83b2
  1. 22
      src/pages/project/add/index.vue

@ -248,7 +248,7 @@ export default {
return 0;
}
if (score > 100) {
// util.warningMsg(res.message);
// util.errorMsg(res.message);
util.errorMsg("分配的数值已超过100");
}
console.log("chuli");
@ -357,36 +357,36 @@ export default {
hintOpen
} = this.projectManage;
if (!projectName) {
util.warningMsg("请输入项目名称");
util.errorMsg("请输入项目名称");
return false;
}
if (this.projectNameRepeat) {
util.warningMsg("该项目名称已存在");
util.errorMsg("项目名称重复!");
return false;
}
if (state) {
if (!experimentTarget || !this.removeTag(experimentTarget)) {
util.warningMsg("请输入实验目标");
util.errorMsg("请输入实验目标");
return false;
}
if (!experimentDescription || !this.removeTag(experimentDescription)) {
util.warningMsg("请输入案例描述");
util.errorMsg("请输入案例描述");
return false;
}
if (this.projectJudgmentData.length == 0) {
util.warningMsg("请添加判分点");
util.errorMsg("请添加判分点");
return false;
}
if (this.handDistributionScore < 100) {
util.warningMsg("判分点分数未满100");
util.errorMsg("判分点分数未满100");
return false;
}
if (this.handDistributionScore > 100) {
util.warningMsg("判分点分数已超过100");
util.errorMsg("判分点分数已超过100");
return false;
}
if ((!experimentHint || !this.removeTag(experimentHint)) && hintOpen == 0) {
util.warningMsg("请输入实验提示");
util.errorMsg("请输入实验提示");
return false;
}
}
@ -495,7 +495,7 @@ export default {
}).catch(() => {
});
} else {
util.warningMsg("请选择判分点");
util.errorMsg("请选择判分点");
}
},
handleQueryJudgment() { //
@ -567,7 +567,7 @@ export default {
this.$refs.projectJudgementTable.clearSelection();
});
} else {
util.warningMsg("请选择判分点");
util.errorMsg("请选择判分点");
}
},
handleCacheData() { //

Loading…
Cancel
Save