router.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. // user
  2. import OrganizationManage from "./views/OrganizationManage.vue";
  3. import RoleManage from "./views/RoleManage.vue";
  4. import UserManage from "./views/UserManage.vue";
  5. // rule
  6. import CommonRule from "./views/CommonRule.vue";
  7. import CardRuleManage from "./views/CardRuleManage.vue";
  8. import CommonCardTemplate from "./views/CommonCardTemplate.vue";
  9. import ParamPrintTemplate from "./views/ParamPrintTemplate.vue";
  10. import CommonPrintTemplate from "./views/CommonPrintTemplate.vue";
  11. import PrintPlanPushManage from "./views/PrintPlanPushManage.vue";
  12. import FlowManage from "./views/FlowManage.vue";
  13. import ApproveRecordManage from "./views/ApproveRecordManage.vue";
  14. import SmsManage from "./views/SmsManage.vue";
  15. import CardManage from "./views/CardManage.vue";
  16. // dict
  17. import CampusManage from "./views/CampusManage.vue";
  18. import StudentManage from "./views/StudentManage.vue";
  19. import CourseManage from "./views/CourseManage.vue";
  20. import ClazzManage from "./views/ClazzManage.vue";
  21. import SemesterManage from "./views/SemesterManage.vue";
  22. import MajorManage from "./views/MajorManage.vue";
  23. import ExamManage from "./views/ExamManage.vue";
  24. import CourseSimpleManage from "./views/CourseSimpleManage.vue";
  25. import ClazzSimpleManage from "./views/ClazzSimpleManage.vue";
  26. export default [
  27. {
  28. path: "/base/organization-manage",
  29. name: "OrganizationManage",
  30. component: OrganizationManage
  31. },
  32. {
  33. path: "/base/role-manage",
  34. name: "RoleManage",
  35. component: RoleManage
  36. },
  37. {
  38. path: "/base/user-manage",
  39. name: "UserManage",
  40. component: UserManage
  41. },
  42. {
  43. path: "/base/common-rule",
  44. name: "CommonRule",
  45. component: CommonRule
  46. },
  47. {
  48. path: "/base/card-rule-manage",
  49. name: "CardRuleManage",
  50. component: CardRuleManage
  51. },
  52. {
  53. path: "/base/common-card-template",
  54. name: "CommonCardTemplate",
  55. component: CommonCardTemplate
  56. },
  57. {
  58. path: "/base/param-print-template",
  59. name: "ParamPrintTemplate",
  60. component: ParamPrintTemplate
  61. },
  62. {
  63. path: "/base/common-print-template",
  64. name: "CommonPrintTemplate",
  65. component: CommonPrintTemplate
  66. },
  67. {
  68. path: "/base/print-plan-push-manage",
  69. name: "PrintPlanPushManage",
  70. component: PrintPlanPushManage
  71. },
  72. {
  73. path: "/base/flow-manage",
  74. name: "FlowManage",
  75. component: FlowManage
  76. },
  77. {
  78. path: "/base/approve-record-manage",
  79. name: "ApproveRecordManage",
  80. component: ApproveRecordManage
  81. },
  82. {
  83. path: "/base/course-manage",
  84. name: "CourseManage",
  85. component: CourseManage
  86. },
  87. {
  88. path: "/base/campus-manage",
  89. name: "CampusManage",
  90. component: CampusManage
  91. },
  92. {
  93. path: "/base/student-manage",
  94. name: "StudentManage",
  95. component: StudentManage
  96. },
  97. {
  98. path: "/base/clazz-manage",
  99. name: "ClazzManage",
  100. component: ClazzManage
  101. },
  102. {
  103. path: "/base/semester-manage",
  104. name: "SemesterManage",
  105. component: SemesterManage
  106. },
  107. {
  108. path: "/base/major-manage",
  109. name: "MajorManage",
  110. component: MajorManage
  111. },
  112. {
  113. path: "/base/sms-manage",
  114. name: "SmsManage",
  115. component: SmsManage
  116. },
  117. {
  118. path: "/base/exam-manage",
  119. name: "ExamManage",
  120. component: ExamManage
  121. },
  122. {
  123. path: "/base/course-simple-manage",
  124. name: "CourseSimpleManage",
  125. component: CourseSimpleManage
  126. },
  127. {
  128. path: "/base/clazz-simple-manage/:teachCourseId?",
  129. name: "ClazzSimpleManage",
  130. component: ClazzSimpleManage
  131. },
  132. {
  133. path: "/base/card-manage",
  134. name: "CardManage",
  135. component: CardManage
  136. }
  137. ];