menu-config.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. path: '/duty/index',
  54. name: '职责说明',
  55. module: 'center',
  56. },
  57. ],
  58. },
  59. {
  60. path: '/plan/index',
  61. name: '计划管理',
  62. module: 'center',
  63. },
  64. {
  65. path: '/teacher/index',
  66. name: '教师管理',
  67. module: 'center',
  68. },
  69. {
  70. path: '/student/index',
  71. name: '学生管理',
  72. module: 'center',
  73. },
  74. {
  75. path: '/work/index',
  76. name: '作业管理',
  77. module: 'center',
  78. },
  79. {
  80. path: '/timeTable/index',
  81. name: '课表管理',
  82. module: 'center',
  83. },
  84. {
  85. path: '',
  86. name: '调查问卷',
  87. module: 'center',
  88. children: [
  89. { path: '/questionnaire/index', name: '问卷管理' },
  90. { path: '/itembank/index', name: '题库管理' },
  91. ],
  92. },
  93. //学校
  94. {
  95. path: '',
  96. name: '测试',
  97. module: 'school',
  98. children: [
  99. {
  100. path: '/list',
  101. name: '测试列表',
  102. },
  103. {
  104. path: '/detail',
  105. name: '测试详情',
  106. },
  107. ],
  108. },
  109. {
  110. path: '/plan/index',
  111. name: '计划管理', //上报名单
  112. module: 'school',
  113. },
  114. {
  115. path: '/teacher/index',
  116. name: '教师确认',
  117. module: 'school',
  118. },
  119. {
  120. path: '/leave/index',
  121. name: '请假管理',
  122. module: 'school',
  123. },
  124. //班主任
  125. {
  126. path: '',
  127. name: '测试',
  128. module: 'director',
  129. children: [
  130. {
  131. path: '/list',
  132. name: '测试列表',
  133. },
  134. {
  135. path: '/detail',
  136. name: '测试详情',
  137. },
  138. ],
  139. },
  140. {
  141. path: '/plan/index',
  142. name: '计划管理', //上报名单
  143. module: 'director',
  144. },
  145. {
  146. path: '/classes/index',
  147. name: '班级管理',
  148. module: 'director',
  149. },
  150. //学校
  151. {
  152. path: '/plan/index',
  153. name: '查看计划', //上报名单
  154. module: 'teacher',
  155. },
  156. ];