routes.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. //import Login from '@/view/login'
  2. //import ServerSideLogin from '@/view/serverside/login'
  3. // import HTTP404 from '@/view/404'
  4. import Index from '@/view/index'
  5. import IndexStudent from '@/view/indexStudent'
  6. import StudentList from '@/view/studentList'
  7. import ScoreList from '@/view/scoreList'
  8. import ScoreListDetail from '@/view/scoreListDetail'
  9. import Notice from '@/view/notice'
  10. import NoticeDetail from '@/view/noticeDetail'
  11. import Source from '@/view/source'
  12. import TeachSource from '@/view/teachSource'
  13. import TeachSourceDetail from '@/view/teachSourceDetail'
  14. import TeachSourceVideo from '@/view/teachSourceVideo'
  15. import TeachSourcePpt from '@/view/teachSourceDetail'
  16. import TeachPreclass from '@/view/teachPreclass'
  17. import TeachPrelesson from '@/view/teachPrelesson'
  18. import TeachCheck from '@/view/teachCheck'
  19. import TeachCheckTeacher from '@/view/teachCheckTeacher'
  20. import TeachCheckList from '@/view/teachCheckList'
  21. import TeachTask from '@/view/teachTask'
  22. import TeachTaskDetail from '@/view/teachTaskDetail'
  23. import Report from '@/view/report'
  24. import Reportad from '@/view/reportadvanced'
  25. import Detail from '@/view/detail'
  26. import { resolve } from 'url';
  27. export const routes = [
  28. {
  29. name: 'index',
  30. path: '',
  31. component: Index
  32. },
  33. {
  34. name: 'indexStudent',
  35. path: '/IndexStudent',
  36. component: IndexStudent
  37. },
  38. {
  39. name: 'studentList',
  40. path: '/studentList',
  41. component: StudentList
  42. },
  43. {
  44. name: 'scoreList',
  45. path: '/scoreList',
  46. component: ScoreList
  47. },
  48. {
  49. name: 'scoreListDetail',
  50. path: '/scoreListDetail',
  51. component: ScoreListDetail
  52. },
  53. {
  54. name: 'notice',
  55. path: '/notice',
  56. component: Notice
  57. },
  58. {
  59. name: 'noticeDetail',
  60. path: '/noticeDetail',
  61. component: NoticeDetail
  62. },
  63. {
  64. name: 'source',
  65. path: '/source',
  66. component: Source
  67. },
  68. {
  69. name: 'teachSource',
  70. path: '/teachSource',
  71. component: TeachSource
  72. },
  73. {
  74. name: 'teachSourceDetail',
  75. path: '/teachSourceDetail',
  76. component: TeachSourceDetail
  77. },
  78. {
  79. name: 'teachSourceVideo',
  80. path: '/teachSourceVideo',
  81. component: TeachSourceVideo
  82. },
  83. {
  84. name: 'teachSourcePpt',
  85. path: '/teachSourcePpt',
  86. component: TeachSourcePpt
  87. },
  88. {
  89. name: 'teachPreclass',
  90. path: '/teachPreclass',
  91. component: TeachPreclass
  92. },
  93. {
  94. name: 'teachPrelesson',
  95. path: '/teachPrelesson',
  96. component: TeachPrelesson
  97. },
  98. {
  99. name: 'teachCheck',
  100. path: '/teachCheck',
  101. component: TeachCheck
  102. },
  103. {
  104. name: 'teachCheckTeacher',
  105. path: '/teachCheckTeacher',
  106. component: TeachCheckTeacher
  107. },
  108. {
  109. name: 'teachCheckList',
  110. path: '/teachCheckList',
  111. component: TeachCheckList
  112. },
  113. {
  114. name: 'teachTask',
  115. path: '/teachTask',
  116. component: TeachTask
  117. },
  118. {
  119. name: 'teachTaskDetail',
  120. path: '/teachTaskDetail',
  121. component: TeachTaskDetail
  122. },
  123. {
  124. name: 'report',
  125. path: '/Report',
  126. component: Report
  127. },
  128. {
  129. name: 'reportad',
  130. path: '/Reportad',
  131. component: Reportad
  132. },
  133. {
  134. name: 'detail',
  135. path: '/Detail',
  136. component: Detail
  137. },
  138. ]