|
|
@@ -168,9 +168,7 @@ |
|
|
|
</el-descriptions> |
|
|
|
<el-descriptions title="实际退费信息" v-if="refundBtn || rowData.refundAmount" :column="3" border> |
|
|
|
<el-descriptions-item label="实际退费金额(元)" label-align="right" align="center"> |
|
|
|
{{ |
|
|
|
rowData.refundAmount === null ? 0 + "元" : rowData.refundAmount * 0.01 + "元" |
|
|
|
}} |
|
|
|
{{ rowData.refundAmount }} |
|
|
|
</el-descriptions-item> |
|
|
|
</el-descriptions> |
|
|
|
|
|
|
@@ -583,7 +581,7 @@ function confirmRefund(row: IObject) { |
|
|
|
...data, |
|
|
|
cusType: data.cusType ?? null, |
|
|
|
bankType: data.bankType ?? null, |
|
|
|
// refundAmount: data.refundAmount ? data.refundAmount * 0.01 : null, |
|
|
|
refundAmount: data.refundAmount ? data.refundAmount * 0.01 : null, |
|
|
|
operateType: data.operateType ?? '' |
|
|
|
} |
|
|
|
refundBtn.value = true; |
|
|
@@ -604,7 +602,7 @@ function handleRemark(idx: any, row: any) { |
|
|
|
...data, |
|
|
|
cusType: data.cusType ?? null, |
|
|
|
bankType: data.bankType ?? null, |
|
|
|
// refundAmount: data.amount ? data.amount * 0.01 : null, |
|
|
|
refundAmount: data.refundAmount ? data.refundAmount * 0.01 : null, |
|
|
|
operateType: data.operateType ?? '' |
|
|
|
} |
|
|
|
refundBtn.value = false; |