fix:coding802

This commit is contained in:
shijing 2025-04-23 14:45:20 +08:00
parent f53e09617d
commit 7e0dfafab8
2 changed files with 10 additions and 4 deletions

View File

@ -22,6 +22,7 @@
v-model="form.process" v-model="form.process"
placeholder="工序" placeholder="工序"
clearable clearable
filterable
style="width: 100%" style="width: 100%"
> >
<el-option <el-option
@ -294,6 +295,9 @@ export default {
this.getMaterialOptions(); this.getMaterialOptions();
this.project_code = this.$TOOL.data.get("BASE_INFO").base.base_code; this.project_code = this.$TOOL.data.get("BASE_INFO").base.base_code;
this.form.routepack = this.routepack; this.form.routepack = this.routepack;
if(this.project_code=='bxerp'){
this.form.material_out_tracking = 20;
}
}, },
methods: { methods: {
clearHandle(key) { clearHandle(key) {

View File

@ -122,7 +122,6 @@
:apiObj="apiObj" :apiObj="apiObj"
:params="query" :params="query"
row-key="id" row-key="id"
hidePagination
hideDo hideDo
stripe stripe
> >
@ -315,7 +314,9 @@ export default {
this.active = 1; this.active = 1;
that.form.id = res.id; that.form.id = res.id;
that.routepack = res.id; that.routepack = res.id;
that.query.routepack = res.id;
that.form.material_name = res.material_name; that.form.material_name = res.material_name;
that.apiObj = that.$API.mtm.route.list;
}); });
} }
that.materials.forEach((item) => { that.materials.forEach((item) => {
@ -406,11 +407,12 @@ export default {
that.tLoading = false; that.tLoading = false;
}); });
}, },
// //
handleSaveSuccess() { handleSaveSuccess() {
this.$refs.tables.refresh(); console.log("handleSaveSuccess");
this.getDEGdatas(); let that = this;
that.$refs.tables.refresh();
that.getDEGdatas();
}, },
}, },
}; };