commit
7a3f98e5fc
|
@ -156,7 +156,8 @@
|
||||||
data: JSON.stringify({
|
data: JSON.stringify({
|
||||||
items: [{
|
items: [{
|
||||||
skuId: e.id,
|
skuId: e.id,
|
||||||
count: e.goods_num
|
count: e.goods_num,
|
||||||
|
categoryId: state.goodsInfo.categoryId
|
||||||
}]
|
}]
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
|
@ -107,6 +107,7 @@
|
||||||
skuId: item.sku.id,
|
skuId: item.sku.id,
|
||||||
count: item.count,
|
count: item.count,
|
||||||
cartId: item.id,
|
cartId: item.id,
|
||||||
|
categoryId: item.spu.categoryId
|
||||||
})
|
})
|
||||||
goods_list.push({
|
goods_list.push({
|
||||||
// goods_id: item.goods_id,
|
// goods_id: item.goods_id,
|
||||||
|
|
|
@ -14,7 +14,7 @@ export function showAuthModal(type = 'smsLogin') {
|
||||||
modal.$patch((state) => {
|
modal.$patch((state) => {
|
||||||
state.auth = type;
|
state.auth = type;
|
||||||
});
|
});
|
||||||
}, 200);
|
}, 500);
|
||||||
closeAuthModal();
|
closeAuthModal();
|
||||||
} else {
|
} else {
|
||||||
modal.$patch((state) => {
|
modal.$patch((state) => {
|
||||||
|
|
Loading…
Reference in New Issue