fix:coding802
This commit is contained in:
parent
f53e09617d
commit
7e0dfafab8
|
|
@ -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) {
|
||||||
|
|
|
||||||
|
|
@ -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();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue