adminSideBar.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: 'product-setting',
  31. child: [
  32. {
  33. key: 'searchProduct',
  34. title: '产品中心',
  35. path: '/manger/product'
  36. },
  37. {
  38. key: 'addProduct',
  39. title: '新增产品',
  40. path: '/manger/product/add'
  41. },
  42. {
  43. key: 'productType',
  44. title: '产品类别管理',
  45. path: '/manger/product/type'
  46. }
  47. ],
  48. },
  49. {
  50. title: '文章管理',
  51. icon: 'news',
  52. child: [
  53. {
  54. key: 'searchPages',
  55. title: '文章中心',
  56. path: '/manger/news'
  57. },
  58. {
  59. key: 'addPage',
  60. title: '新增文章',
  61. path: '/manger/news/add'
  62. },
  63. {
  64. key: 'productType',
  65. title: '产品类别管理',
  66. path: '/manger/product/type'
  67. }
  68. ],
  69. }
  70. ]