From e3c9896438190e33d40d565213b2a6d45037c978 Mon Sep 17 00:00:00 2001 From: xiaofajia <1665375861@qq.com> Date: Tue, 26 Nov 2024 17:11:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E4=B8=AA=E8=BF=87=E6=BB=A4=E7=9A=84?= =?UTF-8?q?=E5=B0=8Fbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages-warehouse/inOutWarehouse/part.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages-warehouse/inOutWarehouse/part.vue b/pages-warehouse/inOutWarehouse/part.vue index 66ccb0b..347df5a 100644 --- a/pages-warehouse/inOutWarehouse/part.vue +++ b/pages-warehouse/inOutWarehouse/part.vue @@ -416,7 +416,7 @@ export default { this.partList = Object.entries(res.data) this.partList = this.partList.map(([key, value]) => { return [key, value.filter(item => { - return item.inCount !== item.goodsCount + return item.inCount < item.goodsCount })] }) this.partList = this.partList.filter(([key, value]) => value.length > 0)