menu-config.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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/template',
  88. name: '计划模板',
  89. module: 'center',
  90. },
  91. ],
  92. },
  93. {
  94. path: '/work/index',
  95. name: '作业管理',
  96. module: 'center',
  97. },
  98. // {
  99. // path: '/timeTable/index',
  100. // name: '课表管理',
  101. // module: 'center',
  102. // },
  103. {
  104. path: '',
  105. name: '调查问卷',
  106. module: 'center',
  107. children: [
  108. { path: '/questionnaire/index', name: '问卷管理' },
  109. { path: '/itembank/index', name: '问卷题库' },
  110. { path: '/questionstate/index', name: '问卷进度' },
  111. ],
  112. },
  113. ];
  114. export const school = [
  115. {
  116. path: '',
  117. name: '测试',
  118. module: 'school',
  119. children: [
  120. {
  121. path: '/list',
  122. name: '测试列表',
  123. },
  124. {
  125. path: '/detail',
  126. name: '测试详情',
  127. },
  128. ],
  129. },
  130. {
  131. path: '/plan/index',
  132. name: '计划管理', //上报名单
  133. module: 'school',
  134. },
  135. {
  136. path: '/newPlan/index',
  137. name: '新计划管理', //上报名单
  138. module: 'school',
  139. },
  140. {
  141. path: '/teacher/index',
  142. name: '教师确认',
  143. module: 'school',
  144. },
  145. {
  146. path: '/leave/index',
  147. name: '请假管理',
  148. module: 'school',
  149. },
  150. ];
  151. export const director = [
  152. {
  153. path: '',
  154. name: '测试',
  155. module: 'director',
  156. children: [
  157. {
  158. path: '/list',
  159. name: '测试列表',
  160. },
  161. {
  162. path: '/detail',
  163. name: '测试详情',
  164. },
  165. ],
  166. },
  167. {
  168. path: '/plan/index',
  169. name: '计划管理', //上报名单
  170. module: 'director',
  171. },
  172. {
  173. path: '/newPlan/index',
  174. name: '新计划管理', //上报名单
  175. module: 'director',
  176. },
  177. {
  178. path: '/classes/index',
  179. name: '班级管理',
  180. module: 'director',
  181. },
  182. ];
  183. export const teacher = [
  184. {
  185. path: '/plan/index',
  186. name: '查看计划', //上报名单
  187. module: 'teacher',
  188. },
  189. ];