|
@@ -33,6 +33,54 @@ const businessRouter = {
|
|
meta: { title: '订座安排' }
|
|
meta: { title: '订座安排' }
|
|
}
|
|
}
|
|
]
|
|
]
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ path: 'show',
|
|
|
|
+ component: () => import('@/views/business/show/index'),
|
|
|
|
+ name: 'BusinessShow',
|
|
|
|
+ meta: { title: '演出管理', icon: 'el-icon-headset' },
|
|
|
|
+ redirect: '/business/show/music',
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ path: 'music',
|
|
|
|
+ component: () => import('@/views/business/show/music/index'),
|
|
|
|
+ name: 'BusinessShowMusic',
|
|
|
|
+ meta: { title: '点歌记录' }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ path: 'plan',
|
|
|
|
+ component: () => import('@/views/business/show/plan/index'),
|
|
|
|
+ name: 'BusinessShowPlan',
|
|
|
|
+ meta: { title: '演出安排' }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ path: 'artList',
|
|
|
|
+ component: () => import('@/views/business/show/artList/index'),
|
|
|
|
+ name: 'BusinessShowArtList',
|
|
|
|
+ meta: { title: '艺人管理' }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ path: 'order',
|
|
|
|
+ component: () => import('@/views/business/order/index'),
|
|
|
|
+ name: 'BusinessOrder',
|
|
|
|
+ meta: { title: '点单管理', icon: 'el-icon-s-order' },
|
|
|
|
+ redirect: '/business/order/list',
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ path: 'list',
|
|
|
|
+ component: () => import('@/views/business/order/list/index'),
|
|
|
|
+ name: 'BusinessOrderList',
|
|
|
|
+ meta: { title: '订单列表' }
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ path: 'goods',
|
|
|
|
+ component: () => import('@/views/business/order/goods/index'),
|
|
|
|
+ name: 'BusinessOrderGoods',
|
|
|
|
+ meta: { title: '橱窗管理' }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|