From 3a81af56be4928f2cbc5a4ddfe04e264af7361df Mon Sep 17 00:00:00 2001 From: hou <1601990943@qq.com> Date: Thu, 17 Feb 2022 15:35:01 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E5=BA=93=20=E7=BC=96=E7=A0=81?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/product/warehouse/wholeTransfer/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/product/warehouse/wholeTransfer/index.vue b/src/pages/product/warehouse/wholeTransfer/index.vue index aea3604..f8c9f36 100644 --- a/src/pages/product/warehouse/wholeTransfer/index.vue +++ b/src/pages/product/warehouse/wholeTransfer/index.vue @@ -110,8 +110,9 @@ export default class productCheckReceipt extends BasePage { selectItem(e: any) { this.remove = e.pickerName; this.model.removeList.forEach((item: any) => { - if ((item.materialCode = this.remove.value)) { + if (item.materialCode == this.remove.value) { this.histroyItem = item; + console.log('this.histroyItem', this.histroyItem); } }); } @@ -154,7 +155,7 @@ export default class productCheckReceipt extends BasePage { } else { this.remove = this.model.removeMaterialList[0]; this.model.removeList.forEach((item: any) => { - if ((item.materialCode = this.remove.value)) { + if ((item.materialCode == this.remove.value)) { this.histroyItem = item; } });