This commit is contained in:
wangshiming
2022-03-07 17:49:58 +08:00
parent 12cc256741
commit 1e7171cb23
3 changed files with 25 additions and 14 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2021-12-24 16:58:02 * @Date : 2021-12-24 16:58:02
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-03-07 17:32:05 * @LastEditTime : 2022-03-07 17:41:48
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail-change\\bulk-detail-change.component.ts * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail-change\\bulk-detail-change.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */

View File

@ -456,15 +456,21 @@ export class OrderManagementBulkComponent implements OnInit {
}, },
{ {
title: '接单数量', title: '接单数量',
className: 'text-right', render: 'receveOrderCountInfo',
index: 'goodsNumber', width: '170px',
width: '180px' className: 'text-left',
format: (item: any) =>
`${item.acceptWeight || '--'}吨/
${item.acceptVolume || '--'}`
}, },
{ {
title: '结算量', title: '结算量',
className: 'text-right', index: '结算数量',
index: 'settlementWeight', width: '170px',
width: '150px' className: 'text-left',
format: (item: any) =>
`${item.settlementWeight || '--'}吨/
${item.settlementVolume || '--'}`
}, },
{ {
title: '承运司机', title: '承运司机',

View File

@ -273,16 +273,21 @@ tabs = {
}, },
{ {
title: '接单数量', title: '接单数量',
render: 'receveOrderCountInfo',
width: '170px',
className: 'text-left', className: 'text-left',
width: '200px', format: (item: any) =>
index: 'orderReceivingQuantity' `${item.acceptWeight || '--'}吨/
${item.acceptVolume || '--'}`
}, },
{ {
title: '结算量', title: '结算量',
index: '结算数量',
width: '170px',
className: 'text-left', className: 'text-left',
width: '200px', format: (item: any) =>
index: 'settlementWeight' `${item.settlementWeight || '--'}吨/
${item.settlementVolume || '--'}`
}, },
{ {
title: '承运司机', title: '承运司机',