修复
This commit is contained in:
parent
cfcd9d4e37
commit
f3ff1c63d8
|
@ -177,22 +177,42 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const deleteProduct = async (idArr) => { //删除实体类商品
|
const deleteProduct = async (idArr) => { //删除实体类商品
|
||||||
const res = await uni.request({
|
if(current.value === 1) {
|
||||||
url: baseUrl + '/cart/delete',
|
const res = await uni.request({
|
||||||
method: 'POST',
|
url: baseUrl + '/cart/delete',
|
||||||
data: {
|
method: 'POST',
|
||||||
idList : idArr
|
data: {
|
||||||
},
|
idList : idArr
|
||||||
header: {
|
},
|
||||||
'cookie': wx.getStorageSync('cookie')
|
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
|
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 () => {
|
const getServiceCart = async () => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user