menu-config.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. ],
  117. },
  118. ];
  119. export const school = [
  120. {
  121. path: '',
  122. name: '测试',
  123. module: 'school',
  124. children: [
  125. {
  126. path: '/list',
  127. name: '测试列表',
  128. },
  129. {
  130. path: '/detail',
  131. name: '测试详情',
  132. },
  133. ],
  134. },
  135. {
  136. path: '/plan/index',
  137. name: '计划管理', //上报名单
  138. module: 'school',
  139. },
  140. {
  141. path: '/newPlan/index',
  142. name: '新计划管理', //上报名单
  143. module: 'school',
  144. },
  145. {
  146. path: '/teacher/index',
  147. name: '教师确认',
  148. module: 'school',
  149. },
  150. {
  151. path: '/leave/index',
  152. name: '请假管理',
  153. module: 'school',
  154. },
  155. {
  156. path: '/kaoqin/index',
  157. name: '考勤管理',
  158. module: 'school',
  159. },
  160. ];
  161. export const director = [
  162. {
  163. path: '',
  164. name: '测试',
  165. module: 'director',
  166. children: [
  167. {
  168. path: '/list',
  169. name: '测试列表',
  170. },
  171. {
  172. path: '/detail',
  173. name: '测试详情',
  174. },
  175. ],
  176. },
  177. {
  178. path: '/plan/index',
  179. name: '计划管理', //上报名单
  180. module: 'director',
  181. },
  182. {
  183. path: '/newPlan/index',
  184. name: '新计划管理', //上报名单
  185. module: 'director',
  186. },
  187. {
  188. path: '/classes/index',
  189. name: '班级管理',
  190. module: 'director',
  191. },
  192. ];
  193. export const teacher = [
  194. {
  195. path: '/plan/index',
  196. name: '查看计划', //上报名单
  197. module: 'teacher',
  198. },
  199. ];