diff --git a/src/views/statistics/wpr_statistics.vue b/src/views/statistics/wpr_statistics.vue index 7f73d87e..5d00b5f1 100644 --- a/src/views/statistics/wpr_statistics.vue +++ b/src/views/statistics/wpr_statistics.vue @@ -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); }) },