This commit is contained in:
@@ -299,7 +299,17 @@
|
||||
{ label: '店铺名称', prop: 'shop_name' },
|
||||
{ label: '订单号', prop: 'order_no' },
|
||||
{ label: '资产标识符', prop: 'asset_identifier' },
|
||||
{ label: '资产类型', prop: 'asset_type' },
|
||||
{
|
||||
label: '资产类型',
|
||||
formatter: (_, data) =>
|
||||
data.asset_type === 'device'
|
||||
? '设备'
|
||||
: data.asset_type === 'card'
|
||||
? '单卡'
|
||||
: data.asset_type === 'iot_card'
|
||||
? 'IoT卡'
|
||||
: data.asset_type || '-'
|
||||
},
|
||||
{
|
||||
label: '申请退款金额',
|
||||
formatter: (_, data) => formatCurrency(data.requested_refund_amount)
|
||||
|
||||
Reference in New Issue
Block a user