Fix: 订单详情页面数据显示内容修复 #23

Merged
longbot merged 2 commits from zhuotianyuan/WEB:main into main 2025-10-11 03:33:16 +00:00
1 changed files with 12 additions and 4 deletions
Showing only changes of commit 3886a03ac9 - Show all commits

View File

@ -210,7 +210,6 @@ const ListPage: React.FC = () => {
title: '联系电话',
dataIndex: 'billing_phone',
render: (_, record) => record.shipping?.phone || record.billing?.phone,
},
{
title: '州',
@ -753,7 +752,16 @@ const Detail: React.FC<{
/>
<ProDescriptions.Item label="金额" dataIndex="total" />
<ProDescriptions.Item label="客户邮箱" dataIndex="customer_email" />
<ProDescriptions.Item label="联系电话" dataIndex="billing_phone" />
<ProDescriptions.Item label="联系电话" dataIndex="billing_phone"
render={(_, record) => { return (
<div>
phone
<span>
{record?.shipping?.phone || record?.billing?.phone || '-'}
</span>
</div>
);
}} />
<ProDescriptions.Item label="交易Id" dataIndex="transaction_id" />
<ProDescriptions.Item label="IP" dataIndex="customer_id_address" />
<ProDescriptions.Item label="设备" dataIndex="device_type" />