From 7a2c61df609a199967a3ea04ebada9f1e37379e8 Mon Sep 17 00:00:00 2001
From: xufenglei <xufenglei>
Date: Fri, 22 Dec 2017 16:00:10 +0800
Subject: [PATCH] 编辑账户
---
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