123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- import Layout from '@/layout'
- const businessRouter = {
- path: '/business',
- component: Layout,
- name: 'Business',
- meta: { title: '业务中心', icon: 'el-icon-s-shop', roleValue: 'business_show' },
- redirect: '/business/outlet/list',
- children: [
- {
- path: 'oms',
- component: () => import('@/views/business/oms/index'),
- name: 'BusinessOMS',
- meta: { title: '点单管理', icon: 'el-icon-s-order', roleValue: 'business_oms_show' },
- redirect: '/business/oms/order',
- children: [
- {
- path: 'order',
- component: () => import('@/views/business/oms/list/index'),
- name: 'BusinessOMSOrder',
- meta: { title: '点单列表', roleValue: 'business_oms_order_list_show' }
- },
- {
- path: 'detail',
- component: () => import('@/views/business/oms/detail/index'),
- name: 'BusinessOMSDetail',
- meta: { title: '点单详情', roleValue: 'business_oms_detail_list_show' },
- hidden: true
- }
- ]
- },
- {
- path: 'saveWine',
- component: () => import('@/views/business/saveWine/index'),
- name: 'BusinessSaveWine',
- meta: { title: '存/取酒记录', icon: 'el-icon-goods', roleValue: 'business_saveWine_show' }
- },
- {
- path: 'place',
- component: () => import('@/views/business/place/index'),
- name: 'BusinessPlace',
- meta: { title: '订座安排', icon: 'el-icon-place', roleValue: 'business_place_show' },
- redirect: '/business/place/reserve',
- children: [
- {
- path: 'reserve',
- component: () => import('@/views/business/place/reserve/index'),
- name: 'BusinessPlaceReserve',
- meta: { title: '预订', roleValue: 'business_place_reserve_show' }
- },
- {
- path: 'set',
- component: () => import('@/views/business/place/set/index'),
- name: 'BusinessPlaceSet',
- meta: { title: '未来7天排座', roleValue: 'business_place_set_show' }
- },
- {
- path: 'list',
- component: () => import('@/views/business/place/list/index'),
- name: 'BusinessPlaceList',
- meta: { title: '座位模板', roleValue: 'business_place_list_show' }
- }
- ]
- },
- {
- path: 'sms',
- component: () => import('@/views/business/sms/index'),
- name: 'BusinessSMS',
- meta: { title: '演出管理', icon: 'el-icon-headset', roleValue: 'business_sms_show' },
- redirect: '/business/sms/plan',
- children: [
- {
- path: 'pickASong',
- component: () => import('@/views/business/sms/pickASong/index'),
- name: 'BusinessSMSPickASong',
- meta: { title: '点歌记录', roleValue: 'business_sms_pickASong_show' }
- },
- {
- path: 'reward',
- component: () => import('@/views/business/sms/reward/index'),
- name: 'BusinessSMSReward',
- meta: { title: '赞赏记录', roleValue: 'business_sms_reward_show' }
- },
- {
- path: 'plan',
- component: () => import('@/views/business/sms/plan/index'),
- name: 'BusinessSMSPlan',
- meta: { title: '演出安排', roleValue: 'business_sms_plan_show' }
- },
- {
- path: 'musicLib',
- component: () => import('@/views/business/sms/musicLib/index'),
- name: 'BusinessSMSMusicLib',
- meta: { title: '曲库管理', roleValue: 'business_sms_musicLib_show' }
- },
- {
- path: 'playList',
- component: () => import('@/views/business/sms/playList/index'),
- name: 'BusinessSMSPlayList',
- meta: { title: '艺人曲库', roleValue: 'business_sms_playList_show' },
- hidden: true
- }
- ]
- },
- {
- path: 'pms',
- component: () => import('@/views/business/pms/index'),
- name: 'BusinessPMS',
- meta: { title: '商品管理', icon: 'el-icon-goods', roleValue: 'business_pms_show' },
- redirect: '/business/pms/goods',
- children: [
- {
- path: 'category',
- component: () => import('@/views/business/pms/category/index'),
- name: 'BusinessPMSCategory',
- meta: { title: '商品分类', roleValue: 'business_pms_category_show' }
- },
- {
- path: 'goods',
- component: () => import('@/views/business/pms/goods/index'),
- name: 'BusinessPMSGoods',
- meta: { title: '商品列表', roleValue: 'business_pms_goods_show' }
- },
- {
- path: 'goodsAttr',
- component: () => import('@/views/business/pms/goodsAttr/index'),
- name: 'BusinessPMSGoodsAttr',
- meta: { title: '商品附加', roleValue: 'business_pms_goodsAttr_show' }
- }
- ]
- }
- ]
- }
- export default businessRouter
|