|
|
|
@ -7,23 +7,25 @@ import { LockscreenComponent } from './pages/lockscreen/lockscreen.component';
|
|
|
|
|
//路由守卫
|
|
|
|
|
import {AuthGuard} from './auth.guard' |
|
|
|
|
import { CreateTestScoreComponent } from './examiner/create-test-score/create-test-score.component'; |
|
|
|
|
import { ExaminerIndexComponent } from './examiner/examiner-index/examiner-index.component' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const routes: Routes = [ |
|
|
|
|
{path:'',redirectTo:'login',pathMatch:'full'}, |
|
|
|
|
{ |
|
|
|
|
path:'home', |
|
|
|
|
path:'examiner', |
|
|
|
|
component:NavigationComponent, |
|
|
|
|
canActivate: [AuthGuard],//守卫验证
|
|
|
|
|
children:[ |
|
|
|
|
{path:'',loadChildren:() => import('./ui/ui.module').then(m => m.UiModule)} |
|
|
|
|
{path:'',loadChildren:() => import('./examiner/examiner.module').then(m => m.ExaminerModule)} |
|
|
|
|
] |
|
|
|
|
}, |
|
|
|
|
{ path:'adminLogin', component:LoginComponent}, //管理员登录路由
|
|
|
|
|
{ path:'login', component:LockscreenComponent}, //教员学员登录路由
|
|
|
|
|
{ path:'examiner/create-test-score', component:CreateTestScoreComponent}, //创建试卷具体分数页面
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
|