router.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. // dict
  15. import CampusManage from "./views/CampusManage.vue";
  16. import StudentManage from "./views/StudentManage.vue";
  17. import CourseManage from "./views/CourseManage.vue";
  18. export default [
  19. {
  20. path: "/base/organization-manage",
  21. name: "OrganizationManage",
  22. component: OrganizationManage
  23. },
  24. {
  25. path: "/base/role-manage",
  26. name: "RoleManage",
  27. component: RoleManage
  28. },
  29. {
  30. path: "/base/user-manage",
  31. name: "UserManage",
  32. component: UserManage
  33. },
  34. {
  35. path: "/base/common-rule",
  36. name: "CommonRule",
  37. component: CommonRule
  38. },
  39. {
  40. path: "/base/card-rule-manage",
  41. name: "CardRuleManage",
  42. component: CardRuleManage
  43. },
  44. {
  45. path: "/base/common-card-template",
  46. name: "CommonCardTemplate",
  47. component: CommonCardTemplate
  48. },
  49. {
  50. path: "/base/param-print-template",
  51. name: "ParamPrintTemplate",
  52. component: ParamPrintTemplate
  53. },
  54. {
  55. path: "/base/common-print-template",
  56. name: "CommonPrintTemplate",
  57. component: CommonPrintTemplate
  58. },
  59. {
  60. path: "/base/print-plan-push-manage",
  61. name: "PrintPlanPushManage",
  62. component: PrintPlanPushManage
  63. },
  64. {
  65. path: "/base/flow-manage",
  66. name: "FlowManage",
  67. component: FlowManage
  68. },
  69. {
  70. path: "/base/approve-record-manage",
  71. name: "ApproveRecordManage",
  72. component: ApproveRecordManage
  73. },
  74. {
  75. path: "/base/course-manage",
  76. name: "CourseManage",
  77. component: CourseManage
  78. },
  79. {
  80. path: "/base/campus-manage",
  81. name: "CampusManage",
  82. component: CampusManage
  83. },
  84. {
  85. path: "/base/student-manage",
  86. name: "StudentManage",
  87. component: StudentManage
  88. }
  89. ];