修复余额显示问题,增加未开启智慧充值禁用余额支付,修复自动删除未找到对应购物车问题

This commit is contained in:
2025-12-25 11:35:04 +08:00
parent edd10edf9f
commit 113193b142
7 changed files with 48 additions and 1697 deletions

View File

@@ -39,6 +39,9 @@ export const useCartsStore = defineStore("cart", () => {
);
//用户信息
const shopUserInfo = ref(uni.cache.get("shopUserInfo") || {});
//全部的商品列表
const allGoodsArr=ref([])
const consumeDiscount = ref({});
@@ -754,6 +757,6 @@ export const useCartsStore = defineStore("cart", () => {
//限时折扣
limitTimeDiscount,
shopUserInfo,
socketSendMsg,
socketSendMsg,allGoodsArr
};
});