소스 검색

Merge branch 'master' of http://git.fmode.cn:3000/19870581353/travel-flatform

南城忆潇湘 1 주 전
부모
커밋
d5bca00b4d
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      travel-platform-web/travel-web/src/crm/mobile/mobile.routes.ts

+ 17 - 0
travel-platform-web/travel-web/src/crm/mobile/mobile.routes.ts

@@ -0,0 +1,17 @@
+    import { Routes } from '@angular/router';
+
+export const MOBILE_ROUTES: Routes = [
+      {
+        path: 'home',
+        loadComponent: () => import('./page-crm-home/page-crm-home').then(m => m.PageCrmHome)
+      },
+      {
+        path: 'talk',
+        loadComponent: () => import('./page-crm-platform/page-crm-platform').then(m => m.PageCrmPlatform)
+      },
+      {
+        path: '',
+        redirectTo: 'home',
+        pathMatch: 'full'
+      }
+]