From 116a2e862acca151b23616a8b8102a95e64ffe62 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 6 May 2022 18:15:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=EF=BC=9A=E5=BC=B9=E5=87=BA?= =?UTF-8?q?=E7=A4=BC=E5=8C=85=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/activityField/popUpShopField.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/domain/activityField/popUpShopField.ts b/shared/domain/activityField/popUpShopField.ts index 72fac1803..98b7ad4d8 100644 --- a/shared/domain/activityField/popUpShopField.ts +++ b/shared/domain/activityField/popUpShopField.ts @@ -471,7 +471,7 @@ class PopUpShopShow { for(let pkg of data.packages) { for(let item of pkg.items) { - if(item.isPushing) { + if(item.isPushing && item.hasBoughtCnt < item.buyCnt) { let obj = new PopUpShopItemShow(item); this.items.push(obj); }