From c292f295c9b516cbb9f7fbf587095f710378dbb0 Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Thu, 12 Jul 2018 15:12:17 +0800 Subject: [PATCH] 预报预警 --- src/app/routes/routes-routing.module.ts | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/app/routes/routes-routing.module.ts b/src/app/routes/routes-routing.module.ts index f4719f0..436db0f 100644 --- a/src/app/routes/routes-routing.module.ts +++ b/src/app/routes/routes-routing.module.ts @@ -13,6 +13,8 @@ import { ReportComponent } from './report/report.component'; import { UserLoginComponent } from 'app/routes/passport/login/login.component'; +import { ForecastingWarningComponent } from './forecasting-warning/forecasting-warning.component'; +import { PollutionManagementComponent } from 'app/routes/pollution/management/management.component'; const routes: Routes = [ { @@ -29,7 +31,10 @@ { path: 'devices', loadChildren: './devices/devices.module#DevicesModule' }, { path: 'sensors', loadChildren: './sensors/sensors.module#SensorsModule' }, { path: 'systems', loadChildren: './systems/systems.module#SystemsModule' }, - { path: 'reports', loadChildren: './reports/reports.module#ReportsModule' } + { path: 'reports', loadChildren: './reports/reports.module#ReportsModule' }, + + { path: 'forecasting-warning', component: ForecastingWarningComponent }, + { path: 'pollution/management', component: PollutionManagementComponent } ] }, // passport { -- Gitblit v1.8.0