fix: 菜单管理增加微信小程序图标,修复部分问题

This commit is contained in:
2025-05-30 18:30:18 +08:00
parent 352795d52f
commit 863bab3eba
8 changed files with 340 additions and 79 deletions

View File

@@ -22,6 +22,11 @@ export const useCartsStore = defineStore("carts", () => {
let dinnerType = ref<string>('dine-in');
//就餐模式 先付 后付
const isPayBefore = computed(() => {
return shopUser.userInfo.registerType == 'before' ? true : false;
});
//是否启用会员价
const useVipPrice = computed(() => {
@@ -776,7 +781,7 @@ export const useCartsStore = defineStore("carts", () => {
changeTable,
rotTable,
getGoods,
setGoodsMap
setGoodsMap, isPayBefore
};
});