feat:【antd】【ele】【pay 支付】order/refund/transfer 导出的缺失补全

This commit is contained in:
YunaiV
2025-10-06 09:33:43 +08:00
parent fcc6162692
commit 96026b85b5
16 changed files with 180 additions and 237 deletions

View File

@@ -192,13 +192,13 @@ export function useDetailSchema(): DescriptionItemSchema[] {
field: 'merchantTransferId',
label: '商户单号',
content: (data: PayTransferApi.Transfer) =>
h(Tag, {}, () => data?.merchantTransferId || '-'),
h(Tag, {}, () => data?.merchantTransferId),
},
{
field: 'no',
label: '转账单号',
content: (data: PayTransferApi.Transfer) =>
h(Tag, { color: 'orange' }, () => data?.no || '-'),
h(Tag, { color: 'orange' }, () => data?.no),
},
{
field: 'appId',