menu.jsx 961 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. module.exports = {
  2. adminMenu:[
  3. {
  4. name: '首页',
  5. url: 'sub1',
  6. icon: 'home',
  7. children: [
  8. { name: '消息中心', url: 'index' },
  9. ]
  10. },
  11. {
  12. name: '技术需求管理',
  13. url: 'sub2',
  14. icon: 'bulb',
  15. children: [
  16. { name: '技术需求库', url: 'library' },
  17. { name: '需求发布审核', url: 'examine' },
  18. ]
  19. },
  20. {
  21. name: '技术成果管理',
  22. url: 'sub3',
  23. icon: 'woman',
  24. children: [
  25. { name: '技术成果库', url: 'achievementLibrary' },
  26. { name: '成果发布审核', url: 'achievementExamine' },
  27. ]
  28. },
  29. {
  30. name: '业务管理',
  31. url: 'sub4',
  32. icon: 'wallet',
  33. children: [
  34. { name: '业务分类管理', url: 'businessCategory' },
  35. { name: '业务项目管理', url: 'businessProject' },
  36. ]
  37. }
  38. ]
  39. }