fix:物料统计错误传参修正

This commit is contained in:
shijing 2025-06-20 09:08:31 +08:00
parent a87de2a427
commit 306a797c86
1 changed files with 9 additions and 6 deletions

View File

@ -248,13 +248,13 @@ export default {
material_start__type:30,
},
params_mio:{
item_mio_w_mioitem_number:'',
item_mio__w_mioitem__number:'',
},
params_mlog:{
b_mlog_wmlogb_number:'',
b_mlog__w_mlogb__number:'',
},
params_handover:{
b_handover_w_handoverb_number:'',
b_handover__w_handoverb__number:'',
},
stateDict: {
10: "创建中",
@ -293,12 +293,15 @@ export default {
that.wprItem = res.wm_;
that.wprItem.number = row.number;
}
that.params_mio.item_mio_w_mioitem_number = row.number;
that.params_mlog.b_mlog_wmlogb_number = row.number;
that.params_handover.b_handover_w_handoverb_number = row.number;
that.params_mio.item_mio__w_mioitem__number = row.number;
that.params_mlog.b_mlog__w_mlogb__number = row.number;
that.params_handover.b_handover__w_handoverb__number = row.number;
that.apiObj_mlog = that.$API.wpm.mlog.list;
that.apiObj_handover = that.$API.wpm.handover.list;
that.apiObj_mio = that.$API.inm.mio.list;
that.$refs.tableMlog.queryData(that.params_mlog);
that.$refs.tableHandover.queryData(that.params_handover);
that.$refs.tableMio.queryData(that.params_mio);
})
},