From f3ff1c63d8900aaa7c056fecbd6176f869f5fd94 Mon Sep 17 00:00:00 2001 From: yuanteng0011 <1876787513@qq.com> Date: Sun, 2 Mar 2025 11:27:42 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../productmain/testproductmain.vue | 50 +++++++++++++------ 1 file changed, 35 insertions(+), 15 deletions(-) diff --git a/pages/Shopping-cart/productmain/testproductmain.vue b/pages/Shopping-cart/productmain/testproductmain.vue index 851c409..c75911f 100644 --- a/pages/Shopping-cart/productmain/testproductmain.vue +++ b/pages/Shopping-cart/productmain/testproductmain.vue @@ -177,22 +177,42 @@ } } const deleteProduct = async (idArr) => { //删除实体类商品 - const res = await uni.request({ - url: baseUrl + '/cart/delete', - method: 'POST', - data: { - idList : idArr - }, - header: { - 'cookie': wx.getStorageSync('cookie') - } - }) - console.log(res.data); - if (res.data.code === 1) { - uni.reLaunch({ - url: '/pages/Shopping-cart/productmain/testproductmain' + if(current.value === 1) { + const res = await uni.request({ + url: baseUrl + '/cart/delete', + method: 'POST', + data: { + idList : idArr + }, + header: { + 'cookie': wx.getStorageSync('cookie') + } }) - totalPrice.value = 0 + console.log(res.data); + if (res.data.code === 1) { + uni.reLaunch({ + url: '/pages/Shopping-cart/productmain/testproductmain' + }) + totalPrice.value = 0 + } + } else { + const res = await uni.request({ + url: baseUrl + '/cartExperience/delete', + method: 'POST', + data: { + idList : idArr + }, + header: { + 'cookie': wx.getStorageSync('cookie') + } + }) + console.log(res.data); + if (res.data.code === 1) { + uni.reLaunch({ + url: '/pages/Shopping-cart/productmain/testproductmain' + }) + totalPrice.value = 0 + } } } const getServiceCart = async () => {