修复临时菜和数签子显示问题,修复下单页面商品弹窗问题
This commit is contained in:
@@ -327,9 +327,13 @@ export const useCartsStore = defineStore("cart", () => {
|
||||
}
|
||||
carts.value = arr
|
||||
.map((v) => {
|
||||
|
||||
|
||||
const item = getProductDetails(v);
|
||||
if (!item) {
|
||||
const is_temporary=v.is_temporary||v.isTemporary
|
||||
if(is_temporary){
|
||||
return v
|
||||
}
|
||||
if (!item&&!is_temporary) {
|
||||
socketSendMsg({
|
||||
id: v.id,
|
||||
operate_type: "del",
|
||||
|
||||
Reference in New Issue
Block a user