menu-config.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. },
  39. {
  40. path: '',
  41. name: '人员管理',
  42. module: 'center',
  43. children: [
  44. {
  45. path: '/director/index',
  46. name: '班主任管理',
  47. module: 'center',
  48. },
  49. {
  50. path: '/teacher/index',
  51. name: '教师管理',
  52. module: 'center',
  53. },
  54. {
  55. path: '/student/index',
  56. name: '学生管理',
  57. module: 'center',
  58. },
  59. {
  60. path: '/leave/index',
  61. name: '请假查看',
  62. module: 'center',
  63. },
  64. ],
  65. },
  66. {
  67. path: '/plan/index',
  68. name: '计划管理',
  69. module: 'center',
  70. },
  71. {
  72. path: '/work/index',
  73. name: '作业管理',
  74. module: 'center',
  75. },
  76. // {
  77. // path: '/timeTable/index',
  78. // name: '课表管理',
  79. // module: 'center',
  80. // },
  81. {
  82. path: '',
  83. name: '调查问卷',
  84. module: 'center',
  85. children: [
  86. { path: '/questionnaire/index', name: '问卷管理' },
  87. { path: '/itembank/index', name: '问卷题库' },
  88. { path: '/questionstate/index', name: '问卷进度' },
  89. ],
  90. },
  91. ];
  92. export const school = [
  93. {
  94. path: '',
  95. name: '测试',
  96. module: 'school',
  97. children: [
  98. {
  99. path: '/list',
  100. name: '测试列表',
  101. },
  102. {
  103. path: '/detail',
  104. name: '测试详情',
  105. },
  106. ],
  107. },
  108. {
  109. path: '/plan/index',
  110. name: '计划管理', //上报名单
  111. module: 'school',
  112. },
  113. {
  114. path: '/teacher/index',
  115. name: '教师确认',
  116. module: 'school',
  117. },
  118. {
  119. path: '/leave/index',
  120. name: '请假管理',
  121. module: 'school',
  122. },
  123. ];
  124. export const director = [
  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. export const teacher = [
  152. {
  153. path: '/plan/index',
  154. name: '查看计划', //上报名单
  155. module: 'teacher',
  156. },
  157. ];