app.routes.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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: "text/embed",
  10. loadComponent: () => import('../modules/text/page-text-embed/page-text-embed.component').then(m => m.PageTextEmbedComponent),
  11. // 知识库:杭州市人才政策知识库
  12. {
  13. path: "story/hangzhou",
  14. loadComponent: () => import('../modules/story/page-hangzhou/page-hangzhou.component').then(m => m.PageHangzhouComponent),
  15. runGuardsAndResolvers: "always",
  16. },
  17. // 向量:面部特征向量
  18. {
  19. path: "face/feat68",
  20. loadComponent: () => import('../modules/face/page-feat68/page-feat68.component').then(m => m.PageFeat68Component),
  21. runGuardsAndResolvers: "always",
  22. },
  23. // 聊天模块
  24. {
  25. path: "chat/session/role/:roleId",
  26. loadComponent: () => import('./test-chat-panel/test-chat-panel.component').then(m => m.TestChatPanelComponent),
  27. runGuardsAndResolvers: "always",
  28. },
  29. {
  30. path: "chat/session/chat/:chatId",
  31. loadComponent: () => import('./test-chat-panel/test-chat-panel.component').then(m => m.TestChatPanelComponent),
  32. runGuardsAndResolvers: "always",
  33. },
  34. {
  35. path: 'chat/pro/chat/:chatId',
  36. redirectTo: '/chat/session/chat/:chatId',
  37. pathMatch: 'full'
  38. },
  39. ];