fix bug
This commit is contained in:
@ -442,11 +442,22 @@ export class OrderManagementBulkComponent implements OnInit {
|
|||||||
width: '180px',
|
width: '180px',
|
||||||
index: 'unloadingAddressArr'
|
index: 'unloadingAddressArr'
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '货物信息',
|
||||||
|
// className: 'text-left',
|
||||||
|
// width: '250px',
|
||||||
|
// render: 'goodsName'
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: '货物信息',
|
title: '货物信息',
|
||||||
|
index: 'goodsName',
|
||||||
|
width: '180px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
width: '250px',
|
format: (item: any) =>
|
||||||
render: 'goodsName'
|
`${item.goodsName}/
|
||||||
|
${item.goodsWeight || '0'}吨/
|
||||||
|
${item.goodsVolume || '0'}方/
|
||||||
|
${item.goodsNumber || '0'}件`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '运费单价',
|
title: '运费单价',
|
||||||
@ -460,8 +471,8 @@ export class OrderManagementBulkComponent implements OnInit {
|
|||||||
width: '170px',
|
width: '170px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
format: (item: any) =>
|
format: (item: any) =>
|
||||||
`${item.acceptWeight || '--'}吨/
|
`${item.acceptWeight || '0'}吨/
|
||||||
${item.acceptVolume || '--'}方`
|
${item.acceptVolume || '0'}方`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '结算数量',
|
title: '结算数量',
|
||||||
@ -469,8 +480,8 @@ export class OrderManagementBulkComponent implements OnInit {
|
|||||||
width: '170px',
|
width: '170px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
format: (item: any) =>
|
format: (item: any) =>
|
||||||
`${item.settlementWeight || '--'}吨/
|
`${item.settlementWeight || '0'}吨/
|
||||||
${item.settlementVolume || '--'}方`
|
${item.settlementVolume || '0'}方`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '承运司机',
|
title: '承运司机',
|
||||||
|
|||||||
@ -259,11 +259,22 @@ tabs = {
|
|||||||
width: '220px',
|
width: '220px',
|
||||||
index: 'dischargePlace'
|
index: 'dischargePlace'
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '货物信息',
|
||||||
|
// className: 'text-left',
|
||||||
|
// width: '250px',
|
||||||
|
// render: 'goodsInfos'
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: '货物信息',
|
title: '货物信息',
|
||||||
|
index: 'goodsInfos',
|
||||||
|
width: '180px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
width: '250px',
|
format: (item: any) =>
|
||||||
render: 'goodsInfos'
|
`${item.goodsName}/
|
||||||
|
${item.goodsWeight || '0'}吨/
|
||||||
|
${item.goodsVolume || '0'}方/
|
||||||
|
${item.goodsNumber || '0'}件`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '运费单价',
|
title: '运费单价',
|
||||||
@ -277,8 +288,8 @@ tabs = {
|
|||||||
width: '170px',
|
width: '170px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
format: (item: any) =>
|
format: (item: any) =>
|
||||||
`${item.acceptWeight || '--'}吨/
|
`${item.acceptWeight || '0'}吨/
|
||||||
${item.acceptVolume || '--'}方`
|
${item.acceptVolume || '0'}方`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '结算数量',
|
title: '结算数量',
|
||||||
@ -286,8 +297,8 @@ tabs = {
|
|||||||
width: '170px',
|
width: '170px',
|
||||||
className: 'text-left',
|
className: 'text-left',
|
||||||
format: (item: any) =>
|
format: (item: any) =>
|
||||||
`${item.settlementWeight || '--'}吨/
|
`${item.settlementWeight || '0'}吨/
|
||||||
${item.settlementVolume || '--'}方`
|
${item.settlementVolume || '0'}方`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '承运司机',
|
title: '承运司机',
|
||||||
|
|||||||
Reference in New Issue
Block a user