Commit f29d80f2 by fukai

保存校验失败提供提示

parent 7369f5b7
...@@ -15,19 +15,25 @@ export default { ...@@ -15,19 +15,25 @@ export default {
this.$router.history.push("/taskList", () => { this.$router.history.push("/taskList", () => {
this.$store.commit("setTaskListTabVal", 'trnrel') this.$store.commit("setTaskListTabVal", 'trnrel')
}); });
} else{ }else if(result.fieldErrors && Object.keys(result.fieldErrors).length > 0 ){
const tab = this.showBackendErrors(result.fieldErrors)
if (tab) {
// tab切换之后,需出发tab-click的事件
this.tabClick(tab);
}
this.$notify({
title: "错误",
message: "检核失败!",
type: "error",
});
}
else{
this.$notify({ this.$notify({
title: "失败", title: "失败",
message: "保存失败", message: "保存失败",
type: "error", type: "error",
}); });
if(result.fieldErrors && Object.keys(result.fieldErrors).length > 0 ){
const tab = this.showBackendErrors(fieldErrors)
if (tab) {
// tab切换之后,需出发tab-click的事件
this.tabClick(tab);
}
}
} }
}, },
// 表单暂存 // 表单暂存
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment