From 0f90a845d0089763a18f057ee30d4b0cf97d0983 Mon Sep 17 00:00:00 2001 From: shijing Date: Wed, 17 Dec 2025 08:42:32 +0800 Subject: [PATCH] fix: --- src/views/wpm_gx/handover_form.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/wpm_gx/handover_form.vue b/src/views/wpm_gx/handover_form.vue index d8b83af2..2f8a4a99 100644 --- a/src/views/wpm_gx/handover_form.vue +++ b/src/views/wpm_gx/handover_form.vue @@ -535,8 +535,10 @@ export default { this.form.handoverb = []; data.forEach(item=>{ let obj = {}; - obj.wm = item.id; + obj.wm = item.wm; + obj.label = item.label; obj.batch = item.batch; + obj.count_cando = item.count_canhandover; obj.count = item.count_canhandover; this.form.handoverb.push(obj); this.totalCount += Number(item.count_canhandover);