This commit is contained in:
wangshiming
2021-12-03 16:01:55 +08:00
parent c34b8f7bc4
commit 7fbab89388
13 changed files with 814 additions and 1 deletions

View File

@ -0,0 +1,20 @@
import { NgModule, Type } from '@angular/core';
import { SharedModule } from '@shared';
import { OrderManagementVehicleDetailComponent } from './components/vehicle-detail/vehicle-detail.component';
import { OrderManagementVehicleComponent } from './components/vehicle/vehicle.component';
import { OrderManagementRoutingModule } from './order-management-routing.module';
const COMPONENTS: Type<void>[] = [
OrderManagementVehicleComponent,
OrderManagementVehicleDetailComponent
];
@NgModule({
imports: [
SharedModule,
OrderManagementRoutingModule
],
declarations: COMPONENTS,
})
export class OrderManagementModule { }