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

View File

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