订单
This commit is contained in:
@ -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 { }
|
||||
Reference in New Issue
Block a user