menu.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. // 菜单配置
  2. // headerMenuConfig:头部导航配置
  3. // asideMenuConfig:侧边导航配置
  4. const headerMenuConfig = [
  5. {
  6. title: "系统管理",
  7. name: "system",
  8. icon: "icon-base",
  9. },
  10. {
  11. title: "考务管理",
  12. name: "business",
  13. icon: "icon-business",
  14. },
  15. {
  16. title: "监考管理",
  17. name: "invigilation",
  18. icon: "icon-invigilation",
  19. },
  20. ];
  21. const systemMenuConfig = [
  22. {
  23. title: "系统管理",
  24. name: "System",
  25. icon: "el-icon-menu",
  26. children: [
  27. {
  28. title: "用户管理",
  29. name: "UserManagement",
  30. },
  31. {
  32. title: "机构管理",
  33. name: "OrgManagement",
  34. },
  35. ],
  36. },
  37. ];
  38. const businessMenuConfig = [
  39. {
  40. title: "考务管理",
  41. name: "Exam",
  42. icon: "icon-business",
  43. children: [
  44. {
  45. title: "批次管理",
  46. name: "ExamManagement",
  47. },
  48. {
  49. title: "考生管理",
  50. name: "ExamStudentManagement",
  51. },
  52. {
  53. title: "考生导入",
  54. name: "ExamStudentImport",
  55. },
  56. {
  57. title: "调卷规则",
  58. name: "CourseManagement",
  59. },
  60. {
  61. title: "学生档案",
  62. name: "StudentManagement",
  63. },
  64. {
  65. title: "考场监考设置",
  66. name: "InvigilateManagement",
  67. },
  68. {
  69. title: "导入导出任务",
  70. name: "ImportExportTask",
  71. },
  72. ],
  73. },
  74. ];
  75. const invigilationMenuConfig = [
  76. {
  77. title: "考情监控",
  78. name: "Base",
  79. icon: "icon-exam-detail",
  80. children: [
  81. {
  82. title: "考情监控",
  83. name: "ExamInvigilation",
  84. },
  85. {
  86. title: "在线巡考",
  87. name: "OnlinePatrol",
  88. },
  89. ],
  90. },
  91. {
  92. title: "监考管理",
  93. name: "monitoring",
  94. icon: "icon-invigilation",
  95. children: [
  96. {
  97. title: "实时监控台",
  98. name: "RealtimeMonitoring",
  99. },
  100. {
  101. title: "监考明细管理",
  102. name: "InvigilationDetail",
  103. },
  104. {
  105. title: "预警提醒",
  106. name: "WainingManage",
  107. },
  108. {
  109. title: "重考申请",
  110. name: "ReexamApply",
  111. },
  112. {
  113. title: "进度查询",
  114. name: "ProgressDetail",
  115. },
  116. ],
  117. },
  118. {
  119. title: "重考审批",
  120. name: "Reexam",
  121. icon: "icon-reexam",
  122. children: [
  123. {
  124. title: "重考待审",
  125. name: "ReexamPending",
  126. },
  127. {
  128. title: "重考已审",
  129. name: "ReexamChecked",
  130. },
  131. ],
  132. },
  133. {
  134. title: "查询统计",
  135. name: "Query",
  136. icon: "icon-invigilation",
  137. children: [
  138. {
  139. title: "考情综合报表分析",
  140. name: "ExamReport",
  141. },
  142. {
  143. title: "考生端日志管理",
  144. name: "StudentLogManage",
  145. },
  146. ],
  147. },
  148. ];
  149. export {
  150. headerMenuConfig,
  151. systemMenuConfig,
  152. businessMenuConfig,
  153. invigilationMenuConfig,
  154. };