This commit is contained in:
wangshiming
2021-12-07 15:12:54 +08:00
parent aef47c0d77
commit 86fe0b1f2b
26 changed files with 1947 additions and 16 deletions

View File

@ -0,0 +1,28 @@
/*
* @Author: your name
* @Date: 2021-12-03 15:31:52
* @LastEditTime: 2021-12-07 14:57:09
* @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\order-management\order-management.module.ts
*/
import { NgModule, Type } from '@angular/core';
import { SharedModule } from '@shared';
import { WaybillManagementVehicleDetailComponent } from './components/vehicle-detail/vehicle-detail.component';
import { WaybillManagementVehicleComponent } from './components/vehicle/vehicle.component';
import { WaybillManagementRoutingModule } from './waybill-management-routing.module';
const COMPONENTS: Type<void>[] = [
WaybillManagementVehicleComponent,
WaybillManagementVehicleDetailComponent
];
@NgModule({
imports: [
SharedModule,
WaybillManagementRoutingModule
],
declarations: COMPONENTS,
})
export class WaybillManagementModule { }