货源修改
This commit is contained in:
36
src/app/routes/supply-management/supply-management.module.ts
Normal file
36
src/app/routes/supply-management/supply-management.module.ts
Normal file
@ -0,0 +1,36 @@
|
||||
import { NgModule, Type } from '@angular/core';
|
||||
import { SharedModule } from '@shared';
|
||||
import { SupplyManagementRoutingModule } from './supply-management-routing.module';
|
||||
import { SupplyManagementIndexComponent } from './components/index/index.component';
|
||||
import { SupplyManagementBulkComponent } from './components/bulk/bulk.component';
|
||||
import { SupplyManagementVehicleComponent } from './components/vehicle/vehicle.component';
|
||||
import { SupplyManagementUpdatePriceComponent } from './components/update-price/update-price.component';
|
||||
import { SupplyManagementUpdateFreightComponent } from './components/update-freight/update-freight.component';
|
||||
import { SupplyManagementAssignedCarComponent } from './components/assigned-car/assigned-car.component';
|
||||
import { SupplyManagementQrcodePageComponent } from './components/qrcode-page/qrcode-page.component';
|
||||
import { SupplyManagementUpdateExternalSnComponent } from './components/update-external-sn/update-external-sn.component';
|
||||
import { SupplyManagementBulkDetailComponent } from './components/bulk-detail/bulk-detail.component';
|
||||
import { SupplyManagementVehicleDetailComponent } from './components/vehicle-detail/vehicle-detail.component';
|
||||
import { SupplyManagementAddDriversComponent } from './components/add-drivers/add-drivers.component';
|
||||
|
||||
const COMPONENTS: Type<void>[] = [
|
||||
SupplyManagementIndexComponent,
|
||||
SupplyManagementBulkComponent,
|
||||
SupplyManagementVehicleComponent,
|
||||
SupplyManagementUpdatePriceComponent,
|
||||
SupplyManagementUpdateFreightComponent,
|
||||
SupplyManagementAssignedCarComponent,
|
||||
SupplyManagementQrcodePageComponent,
|
||||
SupplyManagementUpdateExternalSnComponent,
|
||||
SupplyManagementBulkDetailComponent,
|
||||
SupplyManagementVehicleDetailComponent,
|
||||
SupplyManagementAddDriversComponent];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
SharedModule,
|
||||
SupplyManagementRoutingModule
|
||||
],
|
||||
declarations: COMPONENTS,
|
||||
})
|
||||
export class SupplyManagementModule { }
|
||||
Reference in New Issue
Block a user