|
@@ -1,27 +1,30 @@
|
|
|
-import { NgModule } from '@angular/core';
|
|
|
-import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
|
|
|
-
|
|
|
-const routes: Routes = [
|
|
|
- {
|
|
|
- path: '',
|
|
|
- loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'tab4',
|
|
|
- loadChildren: () => import('./tab4/tab4.module').then( m => m.Tab4PageModule)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'feedback',
|
|
|
- loadChildren: () => import('./feedback/feedback.module').then( m => m.FeedbackPageModule)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'settings',
|
|
|
- loadChildren: () => import('./settings/settings.module').then( m => m.SettingsPageModule)
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'login',
|
|
|
- loadChildren: () => import('./login/login.module').then( m => m.LoginPageModule)
|
|
|
- },
{
|
|
|
+import { NgModule } from '@angular/core';
|
|
|
+import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
|
|
|
+// 引用路由守卫
|
|
|
+import { authGuard } from 'src/modules/user/auth.guard';
|
|
|
+
|
|
|
+const routes: Routes = [
|
|
|
+ {
|
|
|
+ path: '',
|
|
|
+ loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'tab4',
|
|
|
+ loadChildren: () => import('./tab4/tab4.module').then( m => m.Tab4PageModule)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'feedback',
|
|
|
+ loadChildren: () => import('./feedback/feedback.module').then( m => m.FeedbackPageModule)
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'settings',
|
|
|
+ loadChildren: () => import('./settings/settings.module').then( m => m.SettingsPageModule)
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // path: 'login',
|
|
|
+ // loadChildren: () => import('./login/login.module').then( m => m.LoginPageModule)
|
|
|
+ // },
|
|
|
+ {
|
|
|
path: 'edit-profile',
|
|
|
loadChildren: () => import('./edit-profile/edit-profile.module').then( m => m.EditProfilePageModule)
|
|
|
},
|
|
@@ -33,14 +36,19 @@ const routes: Routes = [
|
|
|
path: 'privacy',
|
|
|
loadChildren: () => import('./privacy/privacy.module').then( m => m.PrivacyPageModule)
|
|
|
},
|
|
|
+ // 添加:
|
|
|
+ {
|
|
|
+ path: 'user',
|
|
|
+ loadChildren: () => import('../modules/user/user.module').then(m => m.UserModule)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-];
|
|
|
-@NgModule({
|
|
|
- imports: [
|
|
|
- RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })
|
|
|
- ],
|
|
|
- exports: [RouterModule]
|
|
|
-})
|
|
|
-export class AppRoutingModule {}
|
|
|
+];
|
|
|
+@NgModule({
|
|
|
+ imports: [
|
|
|
+ RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules })
|
|
|
+ ],
|
|
|
+ exports: [RouterModule]
|
|
|
+})
|
|
|
+export class AppRoutingModule {}
|