From 86b927b4878837999a74ac1dda9c69ad024f6a74 Mon Sep 17 00:00:00 2001 From: lifizer <913626195@qq.com> Date: Mon, 27 May 2024 16:23:11 +0800 Subject: [PATCH] =?UTF-8?q?Fix(=E8=B4=AD=E7=89=A9=E8=BD=A6):[#1609]?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=A2=9E=E5=87=8F=E5=95=86=E5=93=81=E6=95=B0?= =?UTF-8?q?=E9=87=8F=EF=BC=8C=E5=8F=96=E6=B6=88=E5=8A=A0=E8=BD=BD=E6=95=88?= =?UTF-8?q?=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/cart.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/cart.vue b/pages/cart.vue index 28ae0a3..ff7b0cf 100644 --- a/pages/cart.vue +++ b/pages/cart.vue @@ -342,11 +342,11 @@ export default { const { type } = e const value = good.cartNum + (type === 'plus' ? 1 : -1) const id = good.id - uni.showLoading() + // uni.showLoading() changeCartNum(id, value).then(res => { const { success } = res if (success) { - uni.hideLoading() + // uni.hideLoading() this.$set(this.list[index].carts[gIndex], 'cartNum', value) } }).catch(() => {