promotionRulesManagement.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import {
  2. UserLayout,
  3. BasicLayout,
  4. BlankLayout,
  5. BigScreen,
  6. PageView
  7. } from '@/layouts'
  8. export default {
  9. path: '/promotionRulesManagement',
  10. redirect: '/promotionRulesManagement/promotionRules',
  11. component: PageView,
  12. meta: {
  13. title: '促销管理',
  14. icon: 'rocket',
  15. permission: 'M_promotionRulesManagement'
  16. },
  17. children: [
  18. // {
  19. // path: '/promotionRulesManagement/promotionManagement',
  20. // redirect: '/promotionRulesManagement/promotionManagement/list',
  21. // name: 'promotionManagement',
  22. // component: BlankLayout,
  23. // meta: {
  24. // title: '修理厂促销',
  25. // icon: 'file-ppt',
  26. // permission: 'M_promotionManagementList'
  27. // },
  28. // hideChildrenInMenu: true,
  29. // children: [
  30. // {
  31. // path: 'list',
  32. // name: 'promotionManagementList',
  33. // component: () => import(/* webpackChunkName: "promotionRulesManagement" */ '@/views/promotionRulesManagement/promotionManagement/list.vue'),
  34. // meta: {
  35. // title: '修理厂促销列表',
  36. // icon: 'file-ppt',
  37. // hidden: true,
  38. // permission: 'M_promotionManagementList'
  39. // }
  40. // },
  41. // {
  42. // path: 'add/:sn/:pageType',
  43. // name: 'promotionManagementAdd',
  44. // component: () => import(/* webpackChunkName: "promotionRulesManagement" */ '@/views/promotionRulesManagement/promotionManagement/edit.vue'),
  45. // meta: {
  46. // title: '新增修理厂促销',
  47. // icon: 'file-ppt',
  48. // hidden: true,
  49. // permission: 'B_promotionManagementAdd'
  50. // }
  51. // },
  52. // {
  53. // path: 'edit/:sn/:pageType',
  54. // name: 'promotionManagementEdit',
  55. // component: () => import(/* webpackChunkName: "promotionRulesManagement" */ '@/views/promotionRulesManagement/promotionManagement/edit.vue'),
  56. // meta: {
  57. // title: '编辑修理厂促销',
  58. // icon: 'file-ppt',
  59. // hidden: true,
  60. // permission: 'B_promotionManagementEdit'
  61. // }
  62. // }
  63. // ]
  64. // }
  65. ]
  66. }