router.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // user
  2. import OrganizationManage from "./views/OrganizationManage.vue";
  3. import RoleManage from "./views/RoleManage.vue";
  4. import UserManage from "./views/UserManage.vue";
  5. import SystemSetting from "./views/SystemSetting.vue";
  6. // dict
  7. import StudentManage from "./views/StudentManage.vue";
  8. import SemesterManage from "./views/SemesterManage.vue";
  9. import ArchivesTypeManage from "./views/ArchivesTypeManage.vue";
  10. export default [
  11. {
  12. path: "/base/organization-manage",
  13. name: "OrganizationManage",
  14. component: OrganizationManage
  15. },
  16. {
  17. path: "/base/role-manage",
  18. name: "RoleManage",
  19. component: RoleManage
  20. },
  21. {
  22. path: "/base/user-manage",
  23. name: "UserManage",
  24. component: UserManage
  25. },
  26. {
  27. path: "/base/system-setting",
  28. name: "SystemSetting",
  29. component: SystemSetting
  30. },
  31. {
  32. path: "/base/student-manage",
  33. name: "StudentManage",
  34. component: StudentManage
  35. },
  36. {
  37. path: "/base/semester-manage",
  38. name: "SemesterManage",
  39. component: SemesterManage
  40. },
  41. {
  42. path: "/base/archives-type-manage",
  43. name: "ArchivesTypeManage",
  44. component: ArchivesTypeManage
  45. }
  46. ];