Эх сурвалжийг харах

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

南城忆潇湘 4 өдөр өмнө
parent
commit
d5bca00b4d

+ 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'
+      }
+]