menu-config.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. export const devMenu = [
  2. {
  3. path: '',
  4. name: '测试',
  5. module: 'center',
  6. children: [
  7. {
  8. path: '/list',
  9. name: '测试列表',
  10. },
  11. {
  12. path: '/detail',
  13. name: '测试详情',
  14. },
  15. ],
  16. },
  17. {
  18. path: '',
  19. name: '系统管理',
  20. module: 'center',
  21. children: [
  22. {
  23. path: '/director/index',
  24. name: '班主任管理',
  25. module: 'center',
  26. },
  27. {
  28. path: '/dept/index',
  29. name: '部门管理',
  30. module: 'center',
  31. },
  32. {
  33. path: '/location/index',
  34. name: '地点管理',
  35. module: 'center',
  36. },
  37. {
  38. path: '/bedroom/index',
  39. name: '寝室管理',
  40. module: 'center',
  41. },
  42. {
  43. path: '/classes/index',
  44. name: '班级管理',
  45. module: 'center',
  46. },
  47. {
  48. path: '/subject/index',
  49. name: '科目管理',
  50. module: 'center',
  51. },
  52. ],
  53. },
  54. {
  55. path: '/plan/index',
  56. name: '计划管理',
  57. module: 'center',
  58. },
  59. {
  60. path: '/teacher/index',
  61. name: '教师管理',
  62. module: 'center',
  63. },
  64. {
  65. path: '/student/index',
  66. name: '学生管理',
  67. module: 'center',
  68. },
  69. {
  70. path: '/work/index',
  71. name: '作业管理',
  72. module: 'center',
  73. },
  74. {
  75. path: '',
  76. name: '调查问卷',
  77. module: 'center',
  78. children: [
  79. { path: '/questionnaire/index', name: '问卷管理' },
  80. { path: '/itembank/index', name: '题库管理' },
  81. ],
  82. },
  83. //学校
  84. {
  85. path: '',
  86. name: '测试',
  87. module: 'school',
  88. children: [
  89. {
  90. path: '/list',
  91. name: '测试列表',
  92. },
  93. {
  94. path: '/detail',
  95. name: '测试详情',
  96. },
  97. ],
  98. },
  99. {
  100. path: '/plan/index',
  101. name: '计划管理', //上报名单
  102. module: 'school',
  103. },
  104. {
  105. path: '/teacher/index',
  106. name: '教师确认',
  107. module: 'school',
  108. },
  109. {
  110. path: '/leave/index',
  111. name: '请假管理',
  112. module: 'school',
  113. },
  114. //班主任
  115. {
  116. path: '',
  117. name: '测试',
  118. module: 'director',
  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: 'director',
  134. },
  135. {
  136. path: '/classes/index',
  137. name: '班级管理',
  138. module: 'director',
  139. },
  140. ];