This commit is contained in:
wangshiming
2021-12-07 15:30:12 +08:00
parent 86fe0b1f2b
commit 94fe5ffaae
12 changed files with 1017 additions and 5 deletions

View File

@ -1,13 +1,15 @@
/*
* @Author: your name
* @Date: 2021-12-03 15:31:52
* @LastEditTime: 2021-12-07 14:57:09
* @LastEditTime: 2021-12-07 15:20:01
* @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 { WaybillManagementBulkeDetailComponent } from './components/bulk-detail/bulk-detail.component';
import { WaybillManagementBulkComponent } from './components/bulk/bulk.component';
import { WaybillManagementVehicleDetailComponent } from './components/vehicle-detail/vehicle-detail.component';
@ -15,7 +17,9 @@ import { WaybillManagementVehicleComponent } from './components/vehicle/vehicle.
import { WaybillManagementRoutingModule } from './waybill-management-routing.module';
const COMPONENTS: Type<void>[] = [
WaybillManagementVehicleComponent,
WaybillManagementVehicleDetailComponent
WaybillManagementVehicleDetailComponent,
WaybillManagementBulkComponent,
WaybillManagementBulkeDetailComponent
];
@NgModule({