fix:【antd】【ele】【pay 支付】pay/refund 迁移 ele 版本

This commit is contained in:
YunaiV
2025-10-05 21:48:00 +08:00
parent cb04558426
commit 25e434276a
6 changed files with 149 additions and 124 deletions

View File

@@ -206,16 +206,20 @@ export function useDetailSchema(): DescriptionItemSchema[] {
field: 'payPrice',
label: '支付金额',
content: (data: PayRefundApi.Refund) =>
h(Tag, { color: 'success' }, () =>
`${erpPriceInputFormatter(data?.payPrice || 0)}`
h(
Tag,
{ color: 'success' },
() => `${erpPriceInputFormatter(data?.payPrice || 0)}`,
),
},
{
field: 'refundPrice',
label: '退款金额',
content: (data: PayRefundApi.Refund) =>
h(Tag, { color: 'danger' }, () =>
`${erpPriceInputFormatter(data?.refundPrice || 0)}`
h(
Tag,
{ color: 'danger' },
() => `${erpPriceInputFormatter(data?.refundPrice || 0)}`,
),
},
{