diff options
author | zhangab <zhanganbing@chinamobile.com> | 2018-12-25 14:54:50 +0800 |
---|---|---|
committer | zhangab <zhanganbing@chinamobile.com> | 2018-12-25 14:55:47 +0800 |
commit | 20e5d13525b59266da6558f22e0853533c488d44 (patch) | |
tree | 0d6d9bd531fefe120a2890fa299482af46344ca7 /usecaseui-portal/src/app/app.module.ts | |
parent | c02b38928cc056dc5f099ba3b7271f34e1bb06a9 (diff) |
Fix VNF Alarm Query Bugs
Change-Id: I8fb88ed5845d0edbad6a7e70958557cd9cffe866
Issue-ID: USECASEUI-164
Signed-off-by: zhangab <zhanganbing@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/app.module.ts')
-rw-r--r-- | usecaseui-portal/src/app/app.module.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/app.module.ts b/usecaseui-portal/src/app/app.module.ts index 3b562649..8926badf 100644 --- a/usecaseui-portal/src/app/app.module.ts +++ b/usecaseui-portal/src/app/app.module.ts @@ -46,6 +46,7 @@ import { PieComponent } from './components/charts/pie/pie.component'; import {PathLocationStrategy, LocationStrategy, HashLocationStrategy} from '@angular/common'; // 自定义服务 import { MyhttpService } from './myhttp.service'; +import { HomesService } from './homes.service'; import { onboardService } from './onboard.service'; import { networkHttpservice } from './networkHttpservice.service'; import { PerformanceDetailsComponent } from './components/performance-details/performance-details.component'; @@ -55,6 +56,7 @@ import { PerformanceDetailsComponent } from './components/performance-details/pe { provide: LocationStrategy, useClass: HashLocationStrategy }, { provide: NZ_I18N, useValue: en_US }, MyhttpService, + HomesService, onboardService, networkHttpservice ], |