35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /*
 | |
|  * @Author: your name
 | |
|  * @Date: 2021-12-03 15:31:52
 | |
|  * @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 { WaybillManagementAbnormalAppearComponent } from './components/abnormal-appear/abnormal-appear.component';
 | |
| 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';
 | |
| 
 | |
| import { WaybillManagementVehicleComponent } from './components/vehicle/vehicle.component';
 | |
| import { WaybillManagementRoutingModule } from './waybill-management-routing.module';
 | |
| const COMPONENTS: Type<void>[] = [
 | |
|   WaybillManagementVehicleComponent,
 | |
|   WaybillManagementVehicleDetailComponent,
 | |
|   WaybillManagementBulkComponent,
 | |
|   WaybillManagementBulkeDetailComponent,
 | |
|   WaybillManagementAbnormalAppearComponent
 | |
| ];
 | |
| 
 | |
| @NgModule({
 | |
|   imports: [
 | |
|     SharedModule,
 | |
|     WaybillManagementRoutingModule
 | |
|   ],
 | |
|   declarations: COMPONENTS,
 | |
| })
 | |
| export class WaybillManagementModule { }
 |