adminSideBar.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. },
  18. {
  19. title: '基础信息配置',
  20. icon: 'base-setting',
  21. child: [
  22. {
  23. key: 'base',
  24. title: '基础信息管理',
  25. path: '/manger/base'
  26. },
  27. ]
  28. },
  29. {
  30. title: '产品管理',
  31. icon: 'product-setting',
  32. child: [
  33. {
  34. key: 'searchProduct',
  35. title: '产品中心',
  36. path: '/manger/product'
  37. },
  38. {
  39. key: 'addProduct',
  40. title: '新增产品',
  41. path: '/manger/product/add'
  42. },
  43. {
  44. key: 'productType',
  45. title: '产品类别管理',
  46. path: '/manger/product/type'
  47. }
  48. ],
  49. },
  50. {
  51. title: '文章管理',
  52. icon: 'news',
  53. child: [
  54. {
  55. key: 'searchPages',
  56. title: '文章中心',
  57. path: '/manger/news'
  58. },
  59. {
  60. key: 'addPage',
  61. title: '新增文章',
  62. path: '/manger/news/add'
  63. },
  64. {
  65. key: 'productType',
  66. title: '文章类别管理',
  67. path: '/manger/news/type'
  68. }
  69. ],
  70. }
  71. ]