用户中心
This commit is contained in:
26
src/app/routes/usercenter/usercenter.module.ts
Normal file
26
src/app/routes/usercenter/usercenter.module.ts
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* @Author: your name
|
||||
* @Date: 2021-11-29 15:22:34
|
||||
* @LastEditTime: 2021-11-29 17:29:44
|
||||
* @LastEditors: Please set LastEditors
|
||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
* @FilePath: \tms-obc-web\src\app\routes\usercenter\usercenter.module.ts
|
||||
*/
|
||||
import { NgModule } from '@angular/core';
|
||||
import { SharedModule } from '@shared';
|
||||
import { FreightComponentsListComponent } from './components/freight/list/list.component';
|
||||
import { FreightComponentsListNewComponent } from './components/freight/list/new/new.component';
|
||||
import { FreightComponentsListViewComponent } from './components/freight/list/view/view.component';
|
||||
import { UsercenterRoutingModule } from './usercenter-routing.module';
|
||||
|
||||
const COMPONENTS = [
|
||||
FreightComponentsListComponent,
|
||||
FreightComponentsListViewComponent,
|
||||
FreightComponentsListNewComponent
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [SharedModule, UsercenterRoutingModule],
|
||||
declarations: [...COMPONENTS],
|
||||
})
|
||||
export class UsercenterModule {}
|
||||
Reference in New Issue
Block a user