This commit is contained in:
yuanteng0011 2025-03-02 11:27:42 +08:00
parent cfcd9d4e37
commit f3ff1c63d8

View File

@ -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 () => {