From 718660faaf6195672bb7c06ee18a4386a4973cad Mon Sep 17 00:00:00 2001 From: shijing Date: Wed, 10 Sep 2025 09:55:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BA=A4=E6=8E=A5=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/handover.vue | 6 ++---- src/views/wpm_bx/handover_form.vue | 4 +++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/wpm_bx/handover.vue b/src/views/wpm_bx/handover.vue index 38bbab16..c69e0b29 100644 --- a/src/views/wpm_bx/handover.vue +++ b/src/views/wpm_bx/handover.vue @@ -72,7 +72,7 @@
新批次号:{{ props.row.new_batch }}
diff --git a/src/views/wpm_bx/handover_form.vue b/src/views/wpm_bx/handover_form.vue index c55080f4..f284322a 100644 --- a/src/views/wpm_bx/handover_form.vue +++ b/src/views/wpm_bx/handover_form.vue @@ -833,7 +833,9 @@ export default { let indexs = 0,arr =[]; if( that.form.handoverb&&that.form.handoverb.length>0){ arr = that.form.handoverb.filter((item,index) => { - indexs = index; + if(item.wm == res[0].wm){ + indexs = index; + } return item.wm == res[0].wm; }) }