diff --git a/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html b/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html index 65315a80..cac1ed5a 100644 --- a/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html +++ b/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html @@ -1,7 +1,7 @@ - + + +
+

{{ data?.expenseName }}:¥{{ data?.price | number:'0.2-2' }}

+
+
-
+

{{ data.expenseName }}:{{ data.price }} {{ data.paymentStatusLabel }} diff --git a/src/app/routes/order-management/components/vehicle/vehicle.component.ts b/src/app/routes/order-management/components/vehicle/vehicle.component.ts index 5733a5b3..a2362a40 100644 --- a/src/app/routes/order-management/components/vehicle/vehicle.component.ts +++ b/src/app/routes/order-management/components/vehicle/vehicle.component.ts @@ -60,7 +60,9 @@ export class OrderManagementVehicleComponent implements OnInit { tabs = { cancelQuantity: 0, receivedQuantity: 0, - stayQuantity: 0 + stayQuantity: 0, + signQuantity: 0, + compolatelQuantity: 0, }; resourceStatus: any; constructor( @@ -113,6 +115,10 @@ resourceStatus: any; } else if (element.billStatusLabel === '待接单') { this.tabs.receivedQuantity = element.quantity } else if (element.billStatusLabel === '待签收') { + this.tabs.signQuantity = element.quantity + } else if (element.billStatusLabel === '已完成') { + this.tabs.compolatelQuantity = element.quantity + } else if (element.billStatusLabel === '已取消') { this.tabs.cancelQuantity = element.quantity } }); @@ -342,6 +348,11 @@ resourceStatus: any; className: 'text-center', render: 'billCode' }, + { + title: '我的出价', + width: '150px', + render: 'mybidInfo' + }, { title: '运费明细', width: '200px',