menu-config.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. export const center = [
  2. {
  3. path: '',
  4. name: '系统管理',
  5. module: 'center',
  6. children: [
  7. {
  8. path: '/dept/index',
  9. name: '部门管理',
  10. module: 'center',
  11. },
  12. {
  13. path: '/school/index',
  14. name: '学校管理',
  15. module: 'center',
  16. },
  17. {
  18. path: '/location/index',
  19. name: '班级管理',
  20. module: 'center',
  21. },
  22. {
  23. path: '/bedroom/index',
  24. name: '寝室管理',
  25. module: 'center',
  26. },
  27. {
  28. path: '/subject/index',
  29. name: '科目管理',
  30. module: 'center',
  31. },
  32. {
  33. path: '/duty/index',
  34. name: '职责说明',
  35. module: 'center',
  36. },
  37. {
  38. path: '/lesson/index',
  39. name: '课表模板',
  40. module: 'center',
  41. },
  42. ],
  43. },
  44. {
  45. path: '',
  46. name: '人员管理',
  47. module: 'center',
  48. children: [
  49. {
  50. path: '/director/index',
  51. name: '班主任管理',
  52. module: 'center',
  53. },
  54. {
  55. path: '/teacher/index',
  56. name: '教师管理',
  57. module: 'center',
  58. },
  59. {
  60. path: '/student/index',
  61. name: '学生管理',
  62. module: 'center',
  63. },
  64. {
  65. path: '/leave/index',
  66. name: '请假查看',
  67. module: 'center',
  68. },
  69. ],
  70. },
  71. {
  72. path: '/plan/index',
  73. name: '计划管理',
  74. module: 'center',
  75. },
  76. {
  77. path: '',
  78. name: '新计划管理',
  79. module: 'center',
  80. children: [
  81. {
  82. path: '/newPlan/index',
  83. name: '年度计划',
  84. module: 'center',
  85. },
  86. {
  87. path: '/newPlan/classes/index',
  88. name: '班级管理',
  89. module: 'center',
  90. },
  91. {
  92. path: '/newPlan/template',
  93. name: '计划模板',
  94. module: 'center',
  95. },
  96. ],
  97. },
  98. {
  99. path: '/work/index',
  100. name: '作业管理',
  101. module: 'center',
  102. },
  103. // {
  104. // path: '/timeTable/index',
  105. // name: '课表管理',
  106. // module: 'center',
  107. // },
  108. {
  109. path: '',
  110. name: '调查问卷',
  111. module: 'center',
  112. children: [
  113. { path: '/questionnaire/index', name: '问卷管理' },
  114. { path: '/itembank/index', name: '问卷题库' },
  115. { path: '/questionstate/index', name: '问卷进度' },
  116. { path: '/statistics/question/index', name: '问卷统计' },
  117. ],
  118. },
  119. ];
  120. export const school = [
  121. {
  122. path: '',
  123. name: '测试',
  124. module: 'school',
  125. children: [
  126. {
  127. path: '/list',
  128. name: '测试列表',
  129. },
  130. {
  131. path: '/detail',
  132. name: '测试详情',
  133. },
  134. ],
  135. },
  136. {
  137. path: '/plan/index',
  138. name: '计划管理', //上报名单
  139. module: 'school',
  140. },
  141. {
  142. path: '/newPlan/index',
  143. name: '新计划管理', //上报名单
  144. module: 'school',
  145. },
  146. {
  147. path: '/teacher/index',
  148. name: '教师确认',
  149. module: 'school',
  150. },
  151. {
  152. path: '/leave/index',
  153. name: '请假管理',
  154. module: 'school',
  155. },
  156. {
  157. path: '/kaoqin/index',
  158. name: '考勤管理',
  159. module: 'school',
  160. },
  161. ];
  162. export const director = [
  163. {
  164. path: '',
  165. name: '测试',
  166. module: 'director',
  167. children: [
  168. {
  169. path: '/list',
  170. name: '测试列表',
  171. },
  172. {
  173. path: '/detail',
  174. name: '测试详情',
  175. },
  176. ],
  177. },
  178. {
  179. path: '/plan/index',
  180. name: '计划管理', //上报名单
  181. module: 'director',
  182. },
  183. {
  184. path: '/newPlan/index',
  185. name: '新计划管理', //上报名单
  186. module: 'director',
  187. },
  188. {
  189. path: '/classes/index',
  190. name: '班级管理',
  191. module: 'director',
  192. },
  193. ];
  194. export const teacher = [
  195. {
  196. path: '/plan/index',
  197. name: '查看计划', //上报名单
  198. module: 'teacher',
  199. },
  200. ];