|
@@ -81,12 +81,12 @@
|
|
|
¥{{ (scope.row.money / 100).toFixed(2) }}
|
|
|
(电费{{ ((scope.row.charge_fee || 0) / 100).toFixed(2) }}元
|
|
|
+ 服务费{{ (scope.row.service_fee / 100).toFixed(2) || 0 }}元)
|
|
|
- <span v-if="scope.row.refund_money" style="color: #67C23A;">
|
|
|
- 已退款 {{ (scope.row.refund_money / 100).toFixed(2) }}
|
|
|
- </span>
|
|
|
</div>
|
|
|
<div v-else-if="item.prop === 'prepay_money'">
|
|
|
¥{{ (scope.row.prepay_money / 100).toFixed(2) }}
|
|
|
+ <div v-if="scope.row.refund_money" style="color: #67C23A;">
|
|
|
+ 已退款 {{ (scope.row.refund_money / 100).toFixed(2) }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div v-else-if="item.prop === 'billing_standard_name'">
|
|
|
<el-link type="primary" @click="showOrderFeeDetail(scope.row)">{{ scope.row.billing_standard_name }}</el-link>
|