工艺流程BUG修复

This commit is contained in:
zhuzhilei 2024-04-10 11:46:08 +08:00
parent 28539e6e6f
commit 9ef803a39b

View File

@ -856,15 +856,24 @@ export default {
updateRouteprocess(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
// this.getList();
});
} else {
addRouteprocess(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
// this.getList();
});
}
this.routeprocessList.forEach((item) => {
getRouteprocess(item.recordId).then((response1) => {
updateRouteprocess(response1.data).then((response2) => {
});
});
});
this.getList();
}
});
},