menu.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/dict',
  20. name: '字典设置',
  21. index: '2-1',
  22. },
  23. ],
  24. },
  25. {
  26. icon: 'icon-shouye',
  27. name: '自营店铺',
  28. index: '3',
  29. type: '0',
  30. children: [
  31. {
  32. icon: 'icon-rencai',
  33. path: '/selfShop/info',
  34. name: '店铺信息',
  35. index: '3-1',
  36. },
  37. {
  38. icon: 'icon-rencai',
  39. path: '/selfShop/goods',
  40. name: '商品管理',
  41. index: '3-2',
  42. },
  43. {
  44. icon: 'icon-rencai',
  45. path: '/selfShop/order',
  46. name: '订单管理',
  47. index: '3-3',
  48. },
  49. {
  50. icon: 'icon-rencai',
  51. path: '/selfShop/coupon',
  52. name: '优惠券管理',
  53. index: '3-4',
  54. },
  55. ],
  56. },
  57. ];