From d5f7ee6e80bb55f2baf89ee5e669ef6829fd20fd Mon Sep 17 00:00:00 2001 From: guochuyicmri Date: Tue, 2 Apr 2019 16:35:22 +0800 Subject: Add user service type management module Change-Id: Id86465d839b27dd4350d391198b8eacdf1f330a8 Issue-ID: USECASEUI-212 Signed-off-by: guochuyicmri --- usecaseui-portal/src/app/app.module.ts | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'usecaseui-portal/src/app/app.module.ts') diff --git a/usecaseui-portal/src/app/app.module.ts b/usecaseui-portal/src/app/app.module.ts index 76fe5d4a..77a102f9 100644 --- a/usecaseui-portal/src/app/app.module.ts +++ b/usecaseui-portal/src/app/app.module.ts @@ -16,14 +16,15 @@ export function HttpLoaderFactory(httpClient: HttpClient) { import { AppRoutingModule } from './app-routing.module'; -//注册语言包 +//Registered language pack import { registerLocaleData } from '@angular/common'; import en from '@angular/common/locales/en'; registerLocaleData(en); -//自定义组件 +//Custom component import { AppComponent } from './app.component'; import { HomeComponent } from './home/home.component'; +import { ManagementComponent } from './management/management.component'; import { ServicesComponent } from './services/services.component'; import { ServicesListComponent } from './services/services-list/services-list.component'; import { OnboardVnfVmComponent } from './services/onboard-vnf-vm/onboard-vnf-vm.component'; @@ -44,13 +45,15 @@ import { LineComponent } from './components/charts/line/line.component'; import { PieComponent } from './components/charts/pie/pie.component'; import {PathLocationStrategy, LocationStrategy, HashLocationStrategy} from '@angular/common'; -// 自定义服务 +// Custom service 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'; import { E2eDetailComponent } from './components/e2e-detail/e2e-detail.component'; +import { CustomerComponent } from './components/customer/customer.component'; +import { ManagemencsService } from './managemencs.service'; @NgModule({ providers : [ @@ -59,12 +62,13 @@ import { E2eDetailComponent } from './components/e2e-detail/e2e-detail.component MyhttpService, HomesService, onboardService, - networkHttpservice + networkHttpservice, + ManagemencsService ], declarations: [ AppComponent, HomeComponent, - + ManagementComponent, ServicesComponent, ServicesListComponent, OnboardVnfVmComponent, @@ -85,6 +89,7 @@ import { E2eDetailComponent } from './components/e2e-detail/e2e-detail.component CcvpnDetailComponent, CcvpnCreationComponent, E2eDetailComponent, + CustomerComponent , PerformanceDetailsComponent, ], imports: [ -- cgit 1.2.3-korg