routes.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import Home from "../../portal/views/home/Home.vue";
  2. import Tips from "../../portal/views/tips/Tips.vue";
  3. import Project from "../view/Project.vue";
  4. import ProjectStatistic from "../view/ProjectStatistic.vue";
  5. import CourseStatistic from "../view/CourseStatistic.vue";
  6. import ProjectTemplate from "../view/ProjectTemplate.vue";
  7. import ExamStructure from "../view/ExamStructure.vue";
  8. export default [
  9. {
  10. path: "/print" /* 印刷管理 */,
  11. meta: { auth: false },
  12. component: Home,
  13. children: [
  14. {
  15. path: "tips" /* 模块说明 */,
  16. component: Tips
  17. },
  18. {
  19. path: "/print/project/list" /* 项目列表 */,
  20. component: Project
  21. },
  22. {
  23. path: "/print/project/statistic/:orgId/:examId" /* 项目统计 */,
  24. component: ProjectStatistic
  25. },
  26. {
  27. path: "/print/course/statistic" /* 课程统计 */,
  28. component: CourseStatistic
  29. },
  30. {
  31. path: "/print/project/template" /* 模板页面 */,
  32. component: ProjectTemplate
  33. },
  34. {
  35. path: "/print/exam/structure" /* 考试结构 */,
  36. component: ExamStructure
  37. }
  38. ]
  39. }
  40. ];