优化订单汇总页面字段映射,调整京东订单号和支付链接的数据索引

This commit is contained in:
danial
2025-07-01 21:05:51 +08:00
parent 99ceeafed8
commit 3fe6351abc

View File

@@ -170,22 +170,24 @@ const columns: TableColumnData[] = [
},
{
title: '京东订单号',
dataIndex: 'jdOrder.webPayLink',
dataIndex: 'jdOrder.jdOrderNo',
ellipsis: true,
tooltip: true
},
{
title: '支付链接',
dataIndex: 'wxPay',
dataIndex: 'jdOrder.webPayLink',
ellipsis: true,
tooltip: true
},
// {
// title: '提取信息',
// dataIndex: 'cardNo',
// tooltip: true,
// ellipsis: true
// },
{
title: '卡片信息',
ellipsis: true,
tooltip: true,
render: ({ record }) => {
return `卡号:${record.jdOrder.cardNo}\n卡密${record.jdOrder.cardPassword}`;
}
},
{
title: '订单金额',
dataIndex: 'orderAmount',