xufenglei
2017-12-22 7a2c61df609a199967a3ea04ebada9f1e37379e8
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
})