31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
/*
|
|
* @Description :
|
|
* @Version : 1.0
|
|
* @Author : Shiming
|
|
* @Date : 2021-11-29 11:06:01
|
|
* @LastEditors : Shiming
|
|
* @LastEditTime : 2022-01-18 17:14:34
|
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\account\\account.module.ts
|
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
|
*/
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '@shared';
|
|
import { AccountRoutingModule } from './account-routing.module';
|
|
import { AccountComponentsCenterComponent } from './components/center/center.component';
|
|
import { AccountComponentsEditNameComponent } from './components/edit-name/edit-name.component';
|
|
import { AccountComponentsCenterEditComponent } from './components/edit-password/edit-password.component';
|
|
|
|
const COMPONENTS = [
|
|
AccountComponentsCenterComponent,
|
|
AccountComponentsEditNameComponent,
|
|
AccountComponentsCenterEditComponent
|
|
];
|
|
const COMPONENTS_NOROUNT = [AccountComponentsEditNameComponent];
|
|
|
|
@NgModule({
|
|
imports: [SharedModule, AccountRoutingModule],
|
|
declarations: [...COMPONENTS, ...COMPONENTS_NOROUNT],
|
|
})
|
|
export class AccountModule {}
|