business.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. import Layout from '@/layout'
  2. const businessRouter = {
  3. path: '/business',
  4. component: Layout,
  5. name: 'Business',
  6. meta: { title: '业务中心', icon: 'el-icon-s-shop', roleValue: 'business_show' },
  7. redirect: '/business/outlet/list',
  8. children: [
  9. {
  10. path: 'oms',
  11. component: () => import('@/views/business/oms/index'),
  12. name: 'BusinessOMS',
  13. meta: { title: '点单管理', icon: 'el-icon-s-order', roleValue: 'business_oms_show' },
  14. redirect: '/business/oms/order',
  15. children: [
  16. {
  17. path: 'order',
  18. component: () => import('@/views/business/oms/list/index'),
  19. name: 'BusinessOMSOrder',
  20. meta: { title: '点单列表', roleValue: 'business_oms_order_list_show' }
  21. },
  22. {
  23. path: 'detail',
  24. component: () => import('@/views/business/oms/detail/index'),
  25. name: 'BusinessOMSDetail',
  26. meta: { title: '点单详情', roleValue: 'business_oms_detail_list_show' },
  27. hidden: true
  28. }
  29. ]
  30. },
  31. {
  32. path: 'saveWine',
  33. component: () => import('@/views/business/saveWine/index'),
  34. name: 'BusinessSaveWine',
  35. meta: { title: '存/取酒记录', icon: 'el-icon-goods', roleValue: 'business_saveWine_show' }
  36. },
  37. {
  38. path: 'place',
  39. component: () => import('@/views/business/place/index'),
  40. name: 'BusinessPlace',
  41. meta: { title: '订座安排', icon: 'el-icon-place', roleValue: 'business_place_show' },
  42. redirect: '/business/place/reserve',
  43. children: [
  44. {
  45. path: 'reserve',
  46. component: () => import('@/views/business/place/reserve/index'),
  47. name: 'BusinessPlaceReserve',
  48. meta: { title: '预订', roleValue: 'business_place_reserve_show' }
  49. },
  50. {
  51. path: 'set',
  52. component: () => import('@/views/business/place/set/index'),
  53. name: 'BusinessPlaceSet',
  54. meta: { title: '未来7天排座', roleValue: 'business_place_set_show' }
  55. },
  56. {
  57. path: 'list',
  58. component: () => import('@/views/business/place/list/index'),
  59. name: 'BusinessPlaceList',
  60. meta: { title: '座位模板', roleValue: 'business_place_list_show' }
  61. }
  62. ]
  63. },
  64. {
  65. path: 'sms',
  66. component: () => import('@/views/business/sms/index'),
  67. name: 'BusinessSMS',
  68. meta: { title: '演出管理', icon: 'el-icon-headset', roleValue: 'business_sms_show' },
  69. redirect: '/business/sms/plan',
  70. children: [
  71. {
  72. path: 'pickASong',
  73. component: () => import('@/views/business/sms/pickASong/index'),
  74. name: 'BusinessSMSPickASong',
  75. meta: { title: '点歌记录', roleValue: 'business_sms_pickASong_show' }
  76. },
  77. {
  78. path: 'reward',
  79. component: () => import('@/views/business/sms/reward/index'),
  80. name: 'BusinessSMSReward',
  81. meta: { title: '赞赏记录', roleValue: 'business_sms_reward_show' }
  82. },
  83. {
  84. path: 'plan',
  85. component: () => import('@/views/business/sms/plan/index'),
  86. name: 'BusinessSMSPlan',
  87. meta: { title: '演出安排', roleValue: 'business_sms_plan_show' }
  88. },
  89. {
  90. path: 'musicLib',
  91. component: () => import('@/views/business/sms/musicLib/index'),
  92. name: 'BusinessSMSMusicLib',
  93. meta: { title: '曲库管理', roleValue: 'business_sms_musicLib_show' }
  94. },
  95. {
  96. path: 'playList',
  97. component: () => import('@/views/business/sms/playList/index'),
  98. name: 'BusinessSMSPlayList',
  99. meta: { title: '艺人曲库', roleValue: 'business_sms_playList_show' },
  100. hidden: true
  101. }
  102. ]
  103. },
  104. {
  105. path: 'pms',
  106. component: () => import('@/views/business/pms/index'),
  107. name: 'BusinessPMS',
  108. meta: { title: '商品管理', icon: 'el-icon-goods', roleValue: 'business_pms_show' },
  109. redirect: '/business/pms/goods',
  110. children: [
  111. {
  112. path: 'category',
  113. component: () => import('@/views/business/pms/category/index'),
  114. name: 'BusinessPMSCategory',
  115. meta: { title: '商品分类', roleValue: 'business_pms_category_show' }
  116. },
  117. {
  118. path: 'goods',
  119. component: () => import('@/views/business/pms/goods/index'),
  120. name: 'BusinessPMSGoods',
  121. meta: { title: '商品列表', roleValue: 'business_pms_goods_show' }
  122. },
  123. {
  124. path: 'goodsAttr',
  125. component: () => import('@/views/business/pms/goodsAttr/index'),
  126. name: 'BusinessPMSGoodsAttr',
  127. meta: { title: '商品附加', roleValue: 'business_pms_goodsAttr_show' }
  128. }
  129. ]
  130. }
  131. ]
  132. }
  133. export default businessRouter