fix:创建工艺路线点击上一步时创建多条记录

This commit is contained in:
shijing 2024-08-15 16:07:32 +08:00
parent 9fa6081434
commit 3435ffa718
1 changed files with 3 additions and 0 deletions

View File

@ -244,6 +244,7 @@ export default {
let form = {}; let form = {};
form.name = that.form.name; form.name = that.form.name;
form.material = that.form.material; form.material = that.form.material;
console.log("that.form",that.form)
if (that.form.id) { if (that.form.id) {
that.$API.mtm.routepack.update that.$API.mtm.routepack.update
.req(that.form.id, that.form) .req(that.form.id, that.form)
@ -258,7 +259,9 @@ export default {
} else { } else {
that.$API.mtm.routepack.create.req(form).then((res) => { that.$API.mtm.routepack.create.req(form).then((res) => {
this.active = 1; this.active = 1;
that.form.id = res.id;
that.routepack = res.id; that.routepack = res.id;
console.log("that.form",that.form)
}); });
} }
}, },