menu-config.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. export const center = [
  2. {
  3. path: '',
  4. name: '系统管理',
  5. module: 'center',
  6. children: [
  7. {
  8. path: '/director/index',
  9. name: '班主任管理',
  10. module: 'center',
  11. },
  12. {
  13. path: '/dept/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: '/classes/index',
  29. // name: '班级管理',
  30. // module: 'center',
  31. // },
  32. {
  33. path: '/subject/index',
  34. name: '科目管理',
  35. module: 'center',
  36. },
  37. {
  38. path: '/duty/index',
  39. name: '职责说明',
  40. module: 'center',
  41. },
  42. ],
  43. },
  44. {
  45. path: '/plan/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: '/work/index',
  61. name: '作业管理',
  62. module: 'center',
  63. },
  64. // {
  65. // path: '/timeTable/index',
  66. // name: '课表管理',
  67. // module: 'center',
  68. // },
  69. {
  70. path: '',
  71. name: '调查问卷',
  72. module: 'center',
  73. children: [
  74. { path: '/questionnaire/index', name: '问卷管理' },
  75. { path: '/itembank/index', name: '题库管理' },
  76. { path: '/questionstate/index', name: '问卷进度' },
  77. ],
  78. },
  79. ];
  80. export const school = [
  81. {
  82. path: '',
  83. name: '测试',
  84. module: 'school',
  85. children: [
  86. {
  87. path: '/list',
  88. name: '测试列表',
  89. },
  90. {
  91. path: '/detail',
  92. name: '测试详情',
  93. },
  94. ],
  95. },
  96. {
  97. path: '/plan/index',
  98. name: '计划管理', //上报名单
  99. module: 'school',
  100. },
  101. {
  102. path: '/teacher/index',
  103. name: '教师确认',
  104. module: 'school',
  105. },
  106. {
  107. path: '/leave/index',
  108. name: '请假管理',
  109. module: 'school',
  110. },
  111. ];
  112. export const director = [
  113. {
  114. path: '',
  115. name: '测试',
  116. module: 'director',
  117. children: [
  118. {
  119. path: '/list',
  120. name: '测试列表',
  121. },
  122. {
  123. path: '/detail',
  124. name: '测试详情',
  125. },
  126. ],
  127. },
  128. {
  129. path: '/plan/index',
  130. name: '计划管理', //上报名单
  131. module: 'director',
  132. },
  133. {
  134. path: '/classes/index',
  135. name: '班级管理',
  136. module: 'director',
  137. },
  138. ];
  139. export const teacher = [
  140. {
  141. path: '/plan/index',
  142. name: '查看计划', //上报名单
  143. module: 'teacher',
  144. },
  145. ];