|
|
|
@ -15,12 +15,12 @@ const routes: Routes = [
|
|
|
|
|
{ path: 'login', component: LoginComponent }, //登录页
|
|
|
|
|
{ path: 'register', component: RegisterComponent }, //注册页
|
|
|
|
|
{ |
|
|
|
|
path: '', component: HomeComponent, children: [ |
|
|
|
|
path: '', component: HomeComponent, canActivate: [AuthGuard], children: [ |
|
|
|
|
{ path: '', loadChildren: () => import('./pages/pages.module').then(m => m.PagesModule) } |
|
|
|
|
] |
|
|
|
|
}, //首页
|
|
|
|
|
{ |
|
|
|
|
path: '', component: NavigationComponent, children: [ |
|
|
|
|
path: '', component: NavigationComponent, canActivate: [AuthGuard], children: [ |
|
|
|
|
{ path: 'system', loadChildren: () => import('./system-management/system-management.module').then(m => m.SystemManagementModule) } |
|
|
|
|
] |
|
|
|
|
}//系统管理
|
|
|
|
|