添加:酒道馆和烟酒店增加订单管理

This commit is contained in:
wuhui_zzw 2024-03-28 14:26:06 +08:00
parent 926ecd2ca7
commit d5a88292eb
1 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,7 @@ export default {
icon: 'iconfont icon-daihexiao'
});
}
if(this.service.customer && [0].includes(Number(merchantInfo.merchant_type))){
if(this.service.customer && [0,1,3].includes(Number(merchantInfo.merchant_type))){
list.push({
title: '订单管理',
url: '/pages/admin/order/index?mer_id=' + merId,
@ -152,6 +152,7 @@ export default {
});
}
return list;
},
...mapGetters(['isLogin', 'uid', 'userInfo', 'viewColor', 'shopIsLogin', 'shopMerId'])