From 2aae5a4bff832fafef1ac0da298cd6da72df5cb5 Mon Sep 17 00:00:00 2001 From: misworga831 Date: Sat, 30 Sep 2023 17:48:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8B=BC=E5=9B=A2?= =?UTF-8?q?=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4=EF=BC=8C=E6=89=80=E9=80=89?= =?UTF-8?q?=E6=95=B0=E9=87=8F=E4=B8=8D=E6=AD=A3=E7=A1=AE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seller/src/views/promotion/pintuan/pintuan-goods.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/seller/src/views/promotion/pintuan/pintuan-goods.vue b/seller/src/views/promotion/pintuan/pintuan-goods.vue index 8d53bee3..e4b3a52a 100644 --- a/seller/src/views/promotion/pintuan/pintuan-goods.vue +++ b/seller/src/views/promotion/pintuan/pintuan-goods.vue @@ -277,6 +277,7 @@ export default { delGoods(index) { // 删除商品 this.goodsData.splice(index, 1); + this.selectCount = 0; }, delAll() { // 批量删除商品 @@ -295,6 +296,7 @@ export default { this.goodsData = this.goodsData.filter((item) => { return !ids.includes(item.skuId); }); + this.selectCount = 0; }, }); },