app.routes_20241224091902.ts 708 B

123456789101112131415161718192021222324
  1. import { Routes } from '@angular/router';
  2. export const routes: Routes = [
  3. {
  4. path: '',
  5. loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
  6. },
  7. // 聊天模块
  8. {
  9. path: "chat/session/role/:roleId",
  10. loadComponent: () => import('./test-chat-panel/test-chat-panel.component').then(m => m.TestChatPanelComponent),
  11. runGuardsAndResolvers: "always",
  12. },
  13. {
  14. path: "chat/session/chat/:chatId",
  15. loadComponent: () => import('./test-chat-panel/test-chat-panel.component').then(m => m.TestChatPanelComponent),
  16. runGuardsAndResolvers: "always",
  17. },
  18. {
  19. path: 'chat/pro/chat/:chatId',
  20. redirectTo: '/chat/session/chat/:chatId',
  21. pathMatch: 'full'
  22. },
  23. ];