From 072f1c666b2367a1feafcb94dacc620ebc341ef6 Mon Sep 17 00:00:00 2001 From: fengxiang <110431245@qq.com> Date: Wed, 27 Dec 2017 09:40:10 +0800 Subject: [PATCH] Merge branch 'develop' of http://blit.7drlb.com:8888/r/screen-frontend into develop --- src/app/routes/systems/systems.module.ts | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/routes/systems/systems.module.ts b/src/app/routes/systems/systems.module.ts index d645b78..0418569 100644 --- a/src/app/routes/systems/systems.module.ts +++ b/src/app/routes/systems/systems.module.ts @@ -5,6 +5,7 @@ import { SharedModule } from '@shared/shared.module'; import { AccountComponent } from './account/account.component'; +import { AccountEditComponent } from './account/account-edit/account-edit.component'; const routes: Routes = [ { @@ -15,7 +16,7 @@ } ]; -const COMPONENTS_NOROUNT = [ ]; +const COMPONENTS_NOROUNT = [ AccountEditComponent ]; @NgModule({ imports: [ @@ -25,7 +26,9 @@ ], declarations: [ ...COMPONENTS_NOROUNT, - AccountComponent + AccountComponent, + AccountEditComponent + ], entryComponents: COMPONENTS_NOROUNT }) -- Gitblit v1.8.0