新增收银点

This commit is contained in:
gyq
2024-02-20 16:13:51 +08:00
parent 4e6729fd24
commit 17753b55b0
6 changed files with 453 additions and 2 deletions

View File

@@ -420,6 +420,25 @@ export const asyncRoutes = [
title: '创客申请',
icon: 'User'
}
},
{
path: '/shop_manage/cashier_dot',
component: () => import('@/views/organization/cashier_dot.vue'),
meta: {
title: '收银点列表',
icon: 'PieChart',
roles: ['MG']
}
},
{
path: '/shop_manage/cashierdot_detail',
name: 'cashierdot_detail',
component: () => import('@/views/organization/cashierdot_detail.vue'),
meta: {
title: '详情',
isHide: true,
activeMenu: '/shop_manage/cashier_dot'
}
}
]
},