|
@@ -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)
|