123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- //import Login from '@/view/login'
- //import ServerSideLogin from '@/view/serverside/login'
- // import HTTP404 from '@/view/404'
- import Index from '@/view/index'
- import IndexStudent from '@/view/indexStudent'
- import StudentList from '@/view/studentList'
- import ScoreList from '@/view/scoreList'
- import ScoreListDetail from '@/view/scoreListDetail'
- import Notice from '@/view/notice'
- import NoticeDetail from '@/view/noticeDetail'
- import Source from '@/view/source'
- import TeachSource from '@/view/teachSource'
- import TeachSourceDetail from '@/view/teachSourceDetail'
- import TeachSourceVideo from '@/view/teachSourceVideo'
- import TeachSourcePpt from '@/view/teachSourceDetail'
- import TeachPreclass from '@/view/teachPreclass'
- import TeachPrelesson from '@/view/teachPrelesson'
- import TeachCheck from '@/view/teachCheck'
- import TeachCheckTeacher from '@/view/teachCheckTeacher'
- import TeachCheckList from '@/view/teachCheckList'
- import TeachTask from '@/view/teachTask'
- import TeachTaskDetail from '@/view/teachTaskDetail'
- import Report from '@/view/report'
- import Reportad from '@/view/reportadvanced'
- import Detail from '@/view/detail'
- import { resolve } from 'url';
- export const routes = [
- {
- name: 'index',
- path: '',
- component: Index
- },
- {
- name: 'indexStudent',
- path: '/IndexStudent',
- component: IndexStudent
- },
- {
- name: 'studentList',
- path: '/studentList',
- component: StudentList
- },
- {
- name: 'scoreList',
- path: '/scoreList',
- component: ScoreList
- },
- {
- name: 'scoreListDetail',
- path: '/scoreListDetail',
- component: ScoreListDetail
- },
- {
- name: 'notice',
- path: '/notice',
- component: Notice
- },
- {
- name: 'noticeDetail',
- path: '/noticeDetail',
- component: NoticeDetail
- },
- {
- name: 'source',
- path: '/source',
- component: Source
- },
- {
- name: 'teachSource',
- path: '/teachSource',
- component: TeachSource
- },
- {
- name: 'teachSourceDetail',
- path: '/teachSourceDetail',
- component: TeachSourceDetail
- },
- {
- name: 'teachSourceVideo',
- path: '/teachSourceVideo',
- component: TeachSourceVideo
- },
- {
- name: 'teachSourcePpt',
- path: '/teachSourcePpt',
- component: TeachSourcePpt
- },
- {
- name: 'teachPreclass',
- path: '/teachPreclass',
- component: TeachPreclass
- },
- {
- name: 'teachPrelesson',
- path: '/teachPrelesson',
- component: TeachPrelesson
- },
- {
- name: 'teachCheck',
- path: '/teachCheck',
- component: TeachCheck
- },
- {
- name: 'teachCheckTeacher',
- path: '/teachCheckTeacher',
- component: TeachCheckTeacher
- },
- {
- name: 'teachCheckList',
- path: '/teachCheckList',
- component: TeachCheckList
- },
- {
- name: 'teachTask',
- path: '/teachTask',
- component: TeachTask
- },
- {
- name: 'teachTaskDetail',
- path: '/teachTaskDetail',
- component: TeachTaskDetail
- },
- {
- name: 'report',
- path: '/Report',
- component: Report
- },
- {
- name: 'reportad',
- path: '/Reportad',
- component: Reportad
- },
- {
- name: 'detail',
- path: '/Detail',
- component: Detail
- },
- ]
|