修复
This commit is contained in:
parent
cfcd9d4e37
commit
f3ff1c63d8
|
@ -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 () => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user