工艺流程BUG修复
This commit is contained in:
parent
28539e6e6f
commit
9ef803a39b
@ -856,15 +856,24 @@ export default {
|
|||||||
updateRouteprocess(this.form).then((response) => {
|
updateRouteprocess(this.form).then((response) => {
|
||||||
this.$modal.msgSuccess("修改成功");
|
this.$modal.msgSuccess("修改成功");
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
// this.getList();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
addRouteprocess(this.form).then((response) => {
|
addRouteprocess(this.form).then((response) => {
|
||||||
this.$modal.msgSuccess("新增成功");
|
this.$modal.msgSuccess("新增成功");
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.getList();
|
// this.getList();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.routeprocessList.forEach((item) => {
|
||||||
|
getRouteprocess(item.recordId).then((response1) => {
|
||||||
|
updateRouteprocess(response1.data).then((response2) => {
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
this.getList();
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user