From 2c8b7ad8f9e31970cc2b7596f2b678bdf8292069 Mon Sep 17 00:00:00 2001 From: 沈斌 <bluelazysb@hotmail.com> Date: Fri, 22 Dec 2017 17:25:33 +0800 Subject: [PATCH] updates --- 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