menu.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. export const system = [
  2. {
  3. icon: 'icon-shouye',
  4. path: '/',
  5. name: '系统首页',
  6. index: '1',
  7. },
  8. ];
  9. export const adminMenu = [
  10. {
  11. icon: 'icon-shouye',
  12. // path: '/',
  13. name: '平台管理',
  14. index: '2',
  15. type: '0',
  16. children: [
  17. {
  18. icon: 'icon-rencai',
  19. path: '/system/indexModule',
  20. name: '首页图标设置',
  21. index: '2-1',
  22. },
  23. {
  24. icon: 'icon-rencai',
  25. path: '/system/banner',
  26. name: '广告图',
  27. index: '2-2',
  28. },
  29. {
  30. icon: 'icon-rencai',
  31. path: '/system/goodsTags',
  32. name: '商品标签',
  33. index: '2-3',
  34. },
  35. {
  36. icon: 'icon-rencai',
  37. path: '/system/order',
  38. name: '平台订单管理',
  39. index: '2-4',
  40. },
  41. {
  42. icon: 'icon-rencai',
  43. path: '/system/coupon',
  44. name: '优惠券管理',
  45. index: '2-5',
  46. },
  47. {
  48. icon: 'icon-rencai',
  49. path: '/system/service',
  50. name: '客服管理',
  51. index: '2-6',
  52. },
  53. ],
  54. },
  55. {
  56. icon: 'icon-shouye',
  57. name: '自营店铺',
  58. index: '3',
  59. type: '0',
  60. children: [
  61. {
  62. icon: 'icon-rencai',
  63. path: '/selfShop/info',
  64. name: '店铺信息',
  65. index: '3-1',
  66. },
  67. {
  68. icon: 'icon-rencai',
  69. path: '/selfShop/goods',
  70. name: '商品管理',
  71. index: '3-2',
  72. },
  73. {
  74. icon: 'icon-rencai',
  75. path: '/selfShop/order',
  76. name: '订单管理',
  77. index: '3-3',
  78. },
  79. {
  80. icon: 'icon-rencai',
  81. path: '/selfShop/sales',
  82. name: '售后管理',
  83. index: '3-5',
  84. },
  85. ],
  86. },
  87. ];
  88. export const devMenu = [
  89. {
  90. icon: 'icon-shouye',
  91. // path: '/',
  92. name: '开发设置',
  93. index: '100',
  94. type: '0',
  95. children: [
  96. {
  97. icon: 'icon-rencai',
  98. path: '/dev/dict',
  99. name: '字典管理',
  100. index: '100-1',
  101. },
  102. ],
  103. },
  104. ];