用户中心

This commit is contained in:
wangshiming
2021-11-29 20:03:45 +08:00
parent 8530a23707
commit c5eaff493d
24 changed files with 2511 additions and 262 deletions

View 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 {}