menu-config.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. export const devMenu = [
  2. {
  3. path: '',
  4. name: '测试',
  5. module: 'center',
  6. children: [
  7. {
  8. path: '/list',
  9. name: '测试列表',
  10. },
  11. {
  12. path: '/detail',
  13. name: '测试详情',
  14. },
  15. ],
  16. },
  17. {
  18. path: '',
  19. name: '系统管理',
  20. module: 'center',
  21. children: [
  22. {
  23. path: '/director/index',
  24. name: '班主任管理',
  25. module: 'center',
  26. },
  27. {
  28. path: '/dept/index',
  29. name: '部门管理',
  30. module: 'center',
  31. },
  32. {
  33. path: '/location/index',
  34. name: '地点管理',
  35. module: 'center',
  36. },
  37. {
  38. path: '/bedroom/index',
  39. name: '寝室管理',
  40. module: 'center',
  41. },
  42. {
  43. path: '/classes/index',
  44. name: '班级管理',
  45. module: 'center',
  46. },
  47. {
  48. path: '/subject/index',
  49. name: '科目管理',
  50. module: 'center',
  51. },
  52. ],
  53. },
  54. {
  55. path: '/plan/index',
  56. name: '计划管理',
  57. module: 'center',
  58. },
  59. {
  60. path: '/teacher/index',
  61. name: '教师管理',
  62. module: 'center',
  63. },
  64. {
  65. path: '/student/index',
  66. name: '学生管理',
  67. module: 'center',
  68. },
  69. {
  70. path: '/work/index',
  71. name: '作业管理',
  72. module: 'center',
  73. },
  74. {
  75. path: '',
  76. name: '调查问卷',
  77. module: 'center',
  78. children: [
  79. { path: '/questionnaire/index', name: '问卷管理' },
  80. { path: '/itembank/index', name: '题库管理' },
  81. ],
  82. },
  83. {
  84. path: '',
  85. name: '测试',
  86. module: 'school',
  87. children: [
  88. {
  89. path: '/list',
  90. name: '测试列表',
  91. },
  92. {
  93. path: '/detail',
  94. name: '测试详情',
  95. },
  96. ],
  97. },
  98. {
  99. path: '/plan/index',
  100. name: '计划管理', //上报名单
  101. module: 'school',
  102. },
  103. {
  104. path: '/teacher/index',
  105. name: '教师确认',
  106. module: 'school',
  107. },
  108. {
  109. path: '/leave/index',
  110. name: '请假管理',
  111. module: 'school',
  112. },
  113. ];