This commit is contained in:
@@ -73,7 +73,7 @@
|
||||
<ElFormItem label="实际退款金额" prop="approved_refund_amount">
|
||||
<ElInputNumber
|
||||
v-model="approveForm.approved_refund_amount"
|
||||
:min="1"
|
||||
:min="0"
|
||||
:precision="2"
|
||||
:step="1"
|
||||
style="width: 100%"
|
||||
@@ -497,7 +497,7 @@
|
||||
label: '实际退款金额',
|
||||
width: 150,
|
||||
formatter: (row: Refund) =>
|
||||
row.approved_refund_amount ? formatCurrency(row.approved_refund_amount) : '-'
|
||||
row.approved_refund_amount === null ? '-' : formatCurrency(row.approved_refund_amount)
|
||||
},
|
||||
{
|
||||
prop: 'actual_received_amount',
|
||||
|
||||
Reference in New Issue
Block a user