diff --git a/src/app/routes/supply-management/components/vehicle/vehicle.component.ts b/src/app/routes/supply-management/components/vehicle/vehicle.component.ts
index d1a4f853..10842415 100644
--- a/src/app/routes/supply-management/components/vehicle/vehicle.component.ts
+++ b/src/app/routes/supply-management/components/vehicle/vehicle.component.ts
@@ -324,7 +324,7 @@ export class SupplyManagementVehicleComponent implements OnInit {
{ title: '', type: 'checkbox', width: '50px', className: 'text-center' },
{
title: '货源编号',
- width: '100px',
+ width: '180px',
className: 'text-center',
render: 'resourceCode'
},
@@ -345,21 +345,21 @@ export class SupplyManagementVehicleComponent implements OnInit {
{
title: '装货地',
index: 'loadingAddressArr',
- width: '120px'
+ width: '200px'
},
{
title: '卸货地',
index: 'unloadingAddressArr',
- width: '120px'
+ width: '200px'
},
{
title: '货物名称',
index: 'goodsName',
- width: '120px'
+ width: '150px'
},
{
title: '货物数量',
- width: '120px',
+ width: '130px',
index: 'goodsNumber',
format: item => item.goodsNumber.join('/')
},
diff --git a/src/app/routes/supply-management/supply-management-routing.module.ts b/src/app/routes/supply-management/supply-management-routing.module.ts
index ba93122e..79aab0ad 100644
--- a/src/app/routes/supply-management/supply-management-routing.module.ts
+++ b/src/app/routes/supply-management/supply-management-routing.module.ts
@@ -1,7 +1,7 @@
/*
* @Author: your name
* @Date: 2021-12-03 11:10:14
- * @LastEditTime: 2021-12-20 13:38:33
+ * @LastEditTime: 2021-12-27 15:25: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\supply-management\supply-management-routing.module.ts
@@ -15,10 +15,11 @@ import { SupplyManagementVehicleDetailComponent } from './components/vehicle-det
import { SupplyManagementAddDriversComponent } from './components/add-drivers/add-drivers.component';
import { SupplyManagementOnecarPublishComponent } from './components/onecar-publish/onecar-publish.component';
import { SupplyManagementBulkPublishComponent } from './components/bulk-publish/bulk-publish.component';
+import { SupplyManagementBulkDetailComponent } from './components/bulk-detail/bulk-detail.component';
const routes: Routes = [
{ path: 'index', component: SupplyManagementIndexComponent },
- // { path: 'bulk-detail/:id', component: SupplyManagementBulkDetailComponent },
+ { path: 'bulk-detail/:id', component: SupplyManagementBulkDetailComponent },
{ path: 'vehicle-detail/:id', component: SupplyManagementVehicleDetailComponent },
{ path: 'add-drivers', component: SupplyManagementAddDriversComponent },
{ path: 'vehicle-amend/:id', component: SupplyManagementOnecarPublishComponent },
diff --git a/src/app/routes/supply-management/supply-management.module.ts b/src/app/routes/supply-management/supply-management.module.ts
index 100b2898..44ceb3d7 100644
--- a/src/app/routes/supply-management/supply-management.module.ts
+++ b/src/app/routes/supply-management/supply-management.module.ts
@@ -28,6 +28,7 @@ import { PublishAddressListComponent } from './components/onecar-publish/address
import { PublishSuccessComponent } from './components/onecar-publish/publish-success/publish-success.component';
import { CarAddDriverComponent } from './components/add-driver/add-driver.component';
import { CarAddmodalComponent } from './components/addmodal/addmodal.component';
+import { SupplyManagementBulkDetailComponent } from './components/bulk-detail/bulk-detail.component';
const COMPONENTS: Type[] = [
@@ -49,7 +50,8 @@ const COMPONENTS: Type[] = [
PublishAddressListComponent,
PublishSuccessComponent,
CarAddDriverComponent,
- CarAddmodalComponent
+ CarAddmodalComponent,
+ SupplyManagementBulkDetailComponent
];
@NgModule({
diff --git a/src/app/routes/waybill-management/components/vehicle-detail/vehicle-detail.component.ts b/src/app/routes/waybill-management/components/vehicle-detail/vehicle-detail.component.ts
index 4be84cd0..feb59366 100644
--- a/src/app/routes/waybill-management/components/vehicle-detail/vehicle-detail.component.ts
+++ b/src/app/routes/waybill-management/components/vehicle-detail/vehicle-detail.component.ts
@@ -1,7 +1,7 @@
/*
* @Author: your name
* @Date: 2021-12-03 15:31:52
- * @LastEditTime: 2021-12-20 13:55:09
+ * @LastEditTime: 2021-12-27 15:38:04
* @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\components\vehicle-detail\vehicle-detail.component.ts
@@ -48,10 +48,12 @@ export class WaybillManagementVehicleDetailComponent implements OnInit {
}
this.service.request(this.service.$api_get_getWholeDetail, params).subscribe((res) => {
console.log(res)
- this.unLoadingPlaceVOList.push(...res.loadingPlace)
- this.unLoadingPlaceVOList.push(...res.dischargePlace)
- console.log(this.unLoadingPlaceVOList)
- this.i = res;
+ if(res) {
+ this.unLoadingPlaceVOList.push(...res.loadingPlace)
+ this.unLoadingPlaceVOList.push(...res?.dischargePlace)
+ console.log(this.unLoadingPlaceVOList)
+ this.i = res;
+ }
})
}
diff --git a/src/style-icons.ts b/src/style-icons.ts
index 7b61ee19..b3a858ff 100644
--- a/src/style-icons.ts
+++ b/src/style-icons.ts
@@ -1,3 +1,11 @@
+/*
+ * @Author: your name
+ * @Date: 2021-11-29 20:03:55
+ * @LastEditTime: 2021-12-27 16:36:11
+ * @LastEditors: Please set LastEditors
+ * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
+ * @FilePath: \tms-obc-web\src\style-icons.ts
+ */
// Custom icon static resources
import {
@@ -8,7 +16,12 @@ import {
InfoOutline,
LinkOutline,
ProfileOutline,
- MobileOutline
+ MobileOutline,
+ UserAddOutline,
+ SolutionOutline,
+ QuestionCircleOutline,
+ CheckCircleOutline,
+ QuestionCircleFill
} from '@ant-design/icons-angular/icons';
export const ICONS = [
@@ -19,5 +32,10 @@ export const ICONS = [
LinkOutline,
FolderOutline,
FileZipOutline,
- MobileOutline
+ MobileOutline,
+ UserAddOutline,
+ SolutionOutline,
+ QuestionCircleOutline,
+ CheckCircleOutline,
+ QuestionCircleFill
];