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

View File

@ -177,6 +177,7 @@
} }
} }
const deleteProduct = async (idArr) => { // const deleteProduct = async (idArr) => { //
if(current.value === 1) {
const res = await uni.request({ const res = await uni.request({
url: baseUrl + '/cart/delete', url: baseUrl + '/cart/delete',
method: 'POST', method: 'POST',
@ -194,6 +195,25 @@
}) })
totalPrice.value = 0 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 () => { const getServiceCart = async () => {
const res = await uni.request({ const res = await uni.request({