From 306a797c86bd81b00e8acee77f4edcbd4c172348 Mon Sep 17 00:00:00 2001 From: shijing Date: Fri, 20 Jun 2025 09:08:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=89=A9=E6=96=99=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E4=BC=A0=E5=8F=82=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/statistics/wpr_statistics.vue | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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); }) },