fix(流程设计): 修复 保存流程设计失败多余的错误提示。

This commit is contained in:
konbai
2022-12-24 02:13:54 +08:00
parent 7f6eec7965
commit bf930c392b

View File

@@ -576,12 +576,10 @@ export default {
this.designerData.loading = true;
saveModel(Object.assign(body, {
newVersion: newVersion
})).then(res => {
this.$modal.msgSuccess(res.msg)
})).then(() => {
this.designerOpen = false;
this.getList();
}).catch(res => {
this.$modal.msgError(res.msg)
}).finally(() => {
this.designerData.loading = false;
})
},