|
@@ -81,7 +81,7 @@
|
|
,已退金额
|
|
,已退金额
|
|
<strong>{{ totalData&&(totalData.refundedAmount || totalData.refundedAmount==0) ? toThousands(totalData.refundedAmount) : '--' }}</strong>
|
|
<strong>{{ totalData&&(totalData.refundedAmount || totalData.refundedAmount==0) ? toThousands(totalData.refundedAmount) : '--' }}</strong>
|
|
<a-tooltip placement="bottom" title="实收金额=已收金额-退款中金额-已退金额">,<span style="color:#ED1c24;">实收金额</span><a-icon type="question-circle" style="margin:0 10px 0 5px;color:#ED1c24;"/></a-tooltip>
|
|
<a-tooltip placement="bottom" title="实收金额=已收金额-退款中金额-已退金额">,<span style="color:#ED1c24;">实收金额</span><a-icon type="question-circle" style="margin:0 10px 0 5px;color:#ED1c24;"/></a-tooltip>
|
|
- <strong style="color:#ED1c24;" v-if="receivedPriceFlag">{{ toThousands(receivedPrice) }}</strong>
|
|
|
|
|
|
+ <strong style="color:#ED1c24;" v-if="receivedPriceFlag">{{ '¥'+receivedPrice }}</strong>
|
|
<span style="color:#ED1c24;" v-else>--</span>
|
|
<span style="color:#ED1c24;" v-else>--</span>
|
|
</div>
|
|
</div>
|
|
</a-alert>
|
|
</a-alert>
|
|
@@ -287,7 +287,8 @@ export default {
|
|
},
|
|
},
|
|
// 实收金额
|
|
// 实收金额
|
|
receivedPrice () {
|
|
receivedPrice () {
|
|
- return this.totalData.settledAmount - this.totalData.refundingAmount - this.totalData.refundedAmount
|
|
|
|
|
|
+ const numInfo = this.totalData.settledAmount - this.totalData.refundingAmount - this.totalData.refundedAmount
|
|
|
|
+ return numInfo.toFixed(2)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|