This commit is contained in:
@@ -59,7 +59,27 @@
|
||||
},
|
||||
{ label: '资产标识符', prop: 'asset_identifier' },
|
||||
{ label: '来源所有者', prop: 'from_owner_name' },
|
||||
{
|
||||
label: '来源类型',
|
||||
formatter: (_, data) => {
|
||||
const typeMap: Record<string, string> = {
|
||||
platform: '平台',
|
||||
shop: '店铺'
|
||||
}
|
||||
return typeMap[data.from_owner_type] || data.from_owner_type || '-'
|
||||
}
|
||||
},
|
||||
{ label: '目标所有者', prop: 'to_owner_name' },
|
||||
{
|
||||
label: '目标类型',
|
||||
formatter: (_, data) => {
|
||||
const typeMap: Record<string, string> = {
|
||||
platform: '平台',
|
||||
shop: '店铺'
|
||||
}
|
||||
return typeMap[data.to_owner_type] || data.to_owner_type || '-'
|
||||
}
|
||||
},
|
||||
{ label: '操作人', prop: 'operator_name' },
|
||||
{ label: '关联卡数量', prop: 'related_card_count' },
|
||||
{ label: '创建时间', prop: 'created_at', formatter: (value) => formatDateTime(value) },
|
||||
|
||||
Reference in New Issue
Block a user