车辆对接

This commit is contained in:
wangshiming
2022-01-05 21:02:22 +08:00
parent f4e924e314
commit d7ee2f56cf
9 changed files with 256 additions and 45 deletions

View File

@ -8,6 +8,7 @@
*/
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
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';
@ -18,6 +19,7 @@ const routes: Routes = [
{ path: 'vehicle-detail/:id', component: WaybillManagementVehicleDetailComponent },
{ path: 'bulk', component: WaybillManagementBulkComponent },
{ path: 'bulk-detail/:id', component: WaybillManagementBulkeDetailComponent },
{ path: 'abnormal-appear', component: WaybillManagementAbnormalAppearComponent },
]
@NgModule({
imports: [RouterModule.forChild(routes)],