车队长列表

This commit is contained in:
wangshiming
2021-12-01 20:38:44 +08:00
parent 3e4e9ee49e
commit acee22b1f3
16 changed files with 1315 additions and 20 deletions

View File

@ -0,0 +1,23 @@
/*
* @Author: your name
* @Date: 2021-11-29 15:22:34
* @LastEditTime: 2021-12-01 20:36:45
* @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 { VehicleComponentsListComponent } from './components/list/list.component';
import { VehicleRoutingModule } from './vehicle-routing.module';
const COMPONENTS = [
VehicleComponentsListComponent
];
@NgModule({
imports: [SharedModule, VehicleRoutingModule],
declarations: [...COMPONENTS],
})
export class VehicleModule {}