Commit e125ad17 authored by XieZhiXiong's avatar XieZhiXiong

chore: 修改金额字段为 amount

parent d0333f21
......@@ -288,8 +288,8 @@ const ExchangeForm: React.FC<BillsFormProps> = ({
},
{
title: !isPointsOrder ? '采购金额' : '所需积分小计',
dataIndex: 'paidAmount',
render: (text, record) => +text ? ${text}` : record.amount,
dataIndex: 'amount',
render: (text) => ${text}`,
},
{
title: '已换货数量',
......
......@@ -291,8 +291,8 @@ const ReturnForm: React.FC<BillsFormProps> = ({
},
{
title: '金额',
dataIndex: 'paidAmount',
render: (text, record) => +text ? ${text}` : record.amount,
dataIndex: 'amount',
render: (text) => ${text}`,
},
{
title: '已退货数量',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment