menu.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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: '/platmanag/goodsTags',
  20. name: '商品标签',
  21. index: '2-1',
  22. },
  23. {
  24. icon: 'icon-rencai',
  25. path: '/platmanag/order',
  26. name: '平台订单管理',
  27. index: '2-2',
  28. },
  29. {
  30. icon: 'icon-rencai',
  31. path: '/platmanag/goodsRate',
  32. name: '商品评价',
  33. index: '2-3',
  34. },
  35. ],
  36. },
  37. {
  38. icon: 'icon-shouye',
  39. // path: '/',
  40. name: '平台活动',
  41. index: '3',
  42. type: '0',
  43. children: [
  44. {
  45. icon: 'icon-rencai',
  46. path: '/platActivi/actTags',
  47. name: '活动标签',
  48. index: '3-1',
  49. },
  50. {
  51. icon: 'icon-rencai',
  52. path: '/platActivi/coupon',
  53. name: '优惠券管理',
  54. index: '3-2',
  55. },
  56. {
  57. icon: 'icon-rencai',
  58. path: '/platActivi/act',
  59. name: '平台活动',
  60. index: '3-3',
  61. },
  62. ],
  63. },
  64. {
  65. icon: 'icon-shouye',
  66. // path: '/',
  67. name: '平台财务',
  68. index: '4',
  69. type: '0',
  70. children: [
  71. {
  72. icon: 'icon-rencai',
  73. path: '/platfinance/statistics',
  74. name: '统计',
  75. index: '4-1',
  76. },
  77. {
  78. icon: 'icon-rencai',
  79. path: '/platfinance/bill',
  80. name: '账单管理',
  81. index: '4-2',
  82. },
  83. ],
  84. },
  85. {
  86. icon: 'icon-shouye',
  87. // path: '/',
  88. name: '平台设置',
  89. index: '5',
  90. type: '0',
  91. children: [
  92. {
  93. icon: 'icon-rencai',
  94. path: '/platSettings/config',
  95. name: '系统设置',
  96. index: '5-1',
  97. },
  98. {
  99. icon: 'icon-rencai',
  100. path: '/platSettings/indexModule',
  101. name: '首页图标设置',
  102. index: '5-2',
  103. },
  104. {
  105. icon: 'icon-rencai',
  106. path: '/platSettings/banner',
  107. name: '广告图',
  108. index: '5-3',
  109. },
  110. {
  111. icon: 'icon-rencai',
  112. path: '/platSettings/service',
  113. name: '客服管理',
  114. index: '5-4',
  115. },
  116. ],
  117. },
  118. {
  119. icon: 'icon-shouye',
  120. name: '自营店铺',
  121. index: '6',
  122. type: '0',
  123. children: [
  124. {
  125. icon: 'icon-rencai',
  126. path: '/selfShop/info',
  127. name: '店铺信息',
  128. index: '6-1',
  129. },
  130. {
  131. icon: 'icon-rencai',
  132. path: '/selfShop/goods',
  133. name: '商品管理',
  134. index: '6-2',
  135. },
  136. {
  137. icon: 'icon-rencai',
  138. path: '/selfShop/order',
  139. name: '订单管理',
  140. index: '6-3',
  141. },
  142. {
  143. icon: 'icon-rencai',
  144. path: '/selfShop/goodsRate',
  145. name: '商品评价',
  146. index: '6-4',
  147. },
  148. {
  149. icon: 'icon-rencai',
  150. path: '/selfShop/sales',
  151. name: '售后管理',
  152. index: '6-5',
  153. },
  154. {
  155. icon: 'icon-rencai',
  156. path: '/selfShop/bill',
  157. name: '账单管理',
  158. index: '6-6',
  159. },
  160. ],
  161. },
  162. ];
  163. export const devMenu = [
  164. {
  165. icon: 'icon-shouye',
  166. // path: '/',
  167. name: '开发设置',
  168. index: '100',
  169. type: '0',
  170. children: [
  171. {
  172. icon: 'icon-rencai',
  173. path: '/dev/dict',
  174. name: '字典管理',
  175. index: '100-1',
  176. },
  177. {
  178. icon: 'icon-rencai',
  179. path: '/dev/menu',
  180. name: '菜单管理',
  181. index: '100-2',
  182. },
  183. {
  184. icon: 'icon-rencai',
  185. path: '/dev/role',
  186. name: '角色管理',
  187. index: '100-3',
  188. },
  189. ],
  190. },
  191. ];