adminSideBar.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. export const adminMenus = [
  2. {
  3. title: '首页展示管理',
  4. icon: 'index-setting',
  5. child: [
  6. {
  7. key: 'carousel',
  8. title: '轮播图管理',
  9. path: '/manger/carousel'
  10. },
  11. {
  12. key: 'showing',
  13. title: '展示块',
  14. path: '/manger/showing'
  15. },
  16. {
  17. key: 'indexProduct',
  18. title: '展品管理',
  19. path: '/manger/index/product'
  20. },
  21. {
  22. key: 'indexNews',
  23. title: '新闻中心管理',
  24. path: '/manger/index/news'
  25. },
  26. ]
  27. },
  28. {
  29. title: '基础信息配置',
  30. icon: 'base-setting',
  31. child: [
  32. {
  33. key: 'base',
  34. title: '基础信息管理',
  35. path: '/manger/base'
  36. },
  37. ]
  38. },
  39. {
  40. title: '产品管理',
  41. icon: 'product-setting',
  42. child: [
  43. {
  44. key: 'searchProduct',
  45. title: '产品中心',
  46. path: '/manger/product'
  47. },
  48. {
  49. key: 'addProduct',
  50. title: '新增产品',
  51. path: '/manger/product/add'
  52. },
  53. {
  54. key: 'productType',
  55. title: '产品类别管理',
  56. path: '/manger/product/type'
  57. }
  58. ],
  59. },
  60. {
  61. title: '文章管理',
  62. icon: 'news',
  63. child: [
  64. {
  65. key: 'searchPages',
  66. title: '文章中心',
  67. path: '/manger/news'
  68. },
  69. {
  70. key: 'addPage',
  71. title: '新增文章',
  72. path: '/manger/news/add'
  73. },
  74. {
  75. key: 'productType',
  76. title: '文章类别管理',
  77. path: '/manger/news/type'
  78. }
  79. ],
  80. }
  81. ]