This commit is contained in:
@@ -399,7 +399,42 @@
|
||||
prop: 'new_asset_identifier',
|
||||
label: '新资产标识符',
|
||||
width: 220,
|
||||
formatter: (row: any) => row.new_asset_identifier
|
||||
formatter: (row: any) => row.new_asset_identifier || '--'
|
||||
},
|
||||
{
|
||||
prop: 'recipient_name',
|
||||
label: '收货人姓名',
|
||||
width: 120,
|
||||
showOverflowTooltip: true,
|
||||
formatter: (row: any) => row.recipient_name || '--'
|
||||
},
|
||||
{
|
||||
prop: 'recipient_phone',
|
||||
label: '收货人电话',
|
||||
width: 140,
|
||||
showOverflowTooltip: true,
|
||||
formatter: (row: any) => row.recipient_phone || '--'
|
||||
},
|
||||
{
|
||||
prop: 'recipient_address',
|
||||
label: '收货地址',
|
||||
minWidth: 260,
|
||||
showOverflowTooltip: true,
|
||||
formatter: (row: any) => row.recipient_address || '--'
|
||||
},
|
||||
{
|
||||
prop: 'express_company',
|
||||
label: '快递公司',
|
||||
width: 160,
|
||||
showOverflowTooltip: true,
|
||||
formatter: (row: any) => row.express_company || '--'
|
||||
},
|
||||
{
|
||||
prop: 'express_no',
|
||||
label: '快递单号',
|
||||
width: 180,
|
||||
showOverflowTooltip: true,
|
||||
formatter: (row: any) => row.express_no || '--'
|
||||
},
|
||||
{
|
||||
prop: 'status',
|
||||
|
||||
Reference in New Issue
Block a user