Browse Source

0210329-路由修改

0210329 4 months ago
parent
commit
56326d7b8b
1 changed files with 16 additions and 0 deletions
  1. 16 0
      src/app/app-routing.module.ts

+ 16 - 0
src/app/app-routing.module.ts

@@ -6,6 +6,22 @@ const routes: Routes = [
     path: '',
     loadChildren: () => import('./tabs/tabs.module').then(m => m.TabsPageModule)
   },
+  {
+    path: 'home',
+    loadChildren: () => import('./home/home.module').then(m => m.HomePageModule)
+  },
+  {
+    path: 'memo',
+    loadChildren: () => import('./memo/memo.module').then(m => m.MemoPageModule)
+  },
+  {
+    path: 'chatpage',
+    loadChildren: () => import('./chatpage/chatpage.module').then(m => m.ChatpagePageModule)
+  },
+  {
+    path: 'mine',
+    loadChildren: () => import('./mine/mine.module').then(m => m.MinePageModule)
+  },
   {
     path: 'user',
     loadChildren: () => import('../modules/user/user.module').then(m => m.UserModule)