fix: 移除订单详情ID相关参数,新增iccid/VirtualNo
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m27s

This commit is contained in:
sexygoat
2026-04-17 14:56:53 +08:00
parent 0e0c3e18d0
commit 5adeade9af

View File

@@ -149,11 +149,6 @@
formatter: (value) => formatter: (value) =>
value !== undefined && value !== null ? formatCurrency(value) : '-' value !== undefined && value !== null ? formatCurrency(value) : '-'
}, },
{
label: 'IoT卡ID',
prop: 'iot_card_id',
formatter: (value) => value || '-'
},
{ {
label: '买家类型', label: '买家类型',
formatter: (_, data) => (data.buyer_type ? getBuyerTypeText(data.buyer_type) : '-') formatter: (_, data) => (data.buyer_type ? getBuyerTypeText(data.buyer_type) : '-')
@@ -168,11 +163,6 @@
prop: 'buyer_nickname', prop: 'buyer_nickname',
formatter: (value) => value || '-' formatter: (value) => value || '-'
}, },
{
label: '买家ID',
prop: 'buyer_id',
formatter: (value) => value || '-'
},
{ {
label: '订单渠道', label: '订单渠道',
formatter: (_, data) => formatter: (_, data) =>
@@ -188,8 +178,8 @@
formatter: (_, data) => (data.is_purchased_by_parent ? '是' : '否') formatter: (_, data) => (data.is_purchased_by_parent ? '是' : '否')
}, },
{ {
label: '操作者ID', label: 'ICCID/VirtualNo',
prop: 'operator_id', prop: 'asset_identifier',
formatter: (value) => value || '-' formatter: (value) => value || '-'
}, },
{ {