会员,充值,明细,下单问题修复

This commit is contained in:
2025-09-28 17:41:19 +08:00
parent a8c2096096
commit 4245c2be0d
13 changed files with 508 additions and 151 deletions

View File

@@ -33,6 +33,8 @@ export const useCartsStore = defineStore('cart',
isMemberPrice: 0,
isTableFee: 1
})
const consumeDiscount=ref({})
// 适配工具库 BaseCartItem 接口的商品数据转换函数
const convertToBaseCartItem = (item) => {
@@ -584,9 +586,12 @@ export const useCartsStore = defineStore('cart',
setSeatFeeConfig,
seatFeeConfig,
shopInfo,
//新客立减数据
consumeDiscount,
//新客立减金额
newUserDiscount,
getAllGoodsList
getAllGoodsList,
};
}
);