From d6b758a6bc489f33cdba6fe3d169cb4e4328cfb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Wed, 24 Sep 2025 16:17:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8A=B1=E9=A6=8D=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=E6=A8=A1=E5=9D=97=E7=9A=84=E8=B4=AD=E7=89=A9=E8=BD=A6?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=95=B0=E6=8D=AE=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/shop/shopCar/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/shop/shopCar/index.vue b/packages/shop/shopCar/index.vue index de7f9271..d121f411 100644 --- a/packages/shop/shopCar/index.vue +++ b/packages/shop/shopCar/index.vue @@ -228,7 +228,8 @@ export default { isDayshow: false, isParcelPostchecked: false, parcelPostshow: false, - is_group_buy: '' + is_group_buy: '', + is_adver: '' }; }, // watch: { @@ -309,7 +310,8 @@ export default { // 获取购物车列表 getShopCar() { const params = { - is_group_buy: this.is_group_buy + is_group_buy: this.is_group_buy, + is_adver: this.is_adver } request(apiArr.getCar, "POST", params).then((res) => { if (res.normal_cart_list.length > 0) { @@ -733,6 +735,7 @@ export default { this.top = meun.top; this.localHeight = meun.height; this.is_group_buy = options.item ? JSON.parse(options.item).is_group_buy : '' + this.is_adver = options.item ? JSON.parse(options.item).is_adver : '' this.getShopCar(); }, onShow() {