|
|
@@ -98,7 +98,7 @@
|
|
|
:show-overflow-tooltip="!field.fixed&&field.width>150"
|
|
|
>
|
|
|
<template #default="{row}">
|
|
|
- <template v-if="['rechargeAmount','totalMoney','refundAmount','balance','frozenAmount','payAmount','discountAmount','refundDiscountAmount'].includes(field.prop)">
|
|
|
+ <template v-if="['rechargeAmount','amount','refundAmount','balance','frozenAmount','amountReceivable','amountReceived','discountAmount','refundDiscountAmount'].includes(field.prop)">
|
|
|
{{ u.fmt.fmtMoney(row[field.prop]) }}
|
|
|
</template>
|
|
|
<template v-else-if="'status'===field.prop">
|
|
|
@@ -109,7 +109,7 @@
|
|
|
<span> <el-button link type="primary" @click="handleGotoRecharge(row)">{{row[field.prop]}} <SvgIcon name="ele-Link" class="hc"></SvgIcon></el-button></span>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <template v-else-if="'chargeTimes'===field.prop">
|
|
|
+ <template v-else-if="'washTimes'===field.prop">
|
|
|
<div class="flex w100 flex-justify-around hp">
|
|
|
<span> <el-button link type="primary" @click="handleGotoCharge(row)">{{row[field.prop]}} <SvgIcon name="ele-Link" class="hc"></SvgIcon></el-button></span>
|
|
|
</div>
|
|
|
@@ -178,10 +178,10 @@ const state = reactive({
|
|
|
{label: '充值金额', width: 90, prop: 'rechargeAmount', resizable: true},
|
|
|
{label: '退款次数', width: 90, prop: 'refundTimes', resizable: true},
|
|
|
{label: '退款金额', width: 90, prop: 'refundAmount', resizable: true},
|
|
|
- {label: '充电次数', width: 90, prop: 'chargeTimes', resizable: true},
|
|
|
- {label: '总电量/度', width: 100, prop: 'totalPower', resizable: true},
|
|
|
- {label: '订单总额', width: 100, prop: 'totalMoney', resizable: true},
|
|
|
- {label: '实付总额', width: 100, prop: 'payAmount', resizable: true},
|
|
|
+ {label: '洗车次数', width: 90, prop: 'washTimes', resizable: true},
|
|
|
+ {label: '消费总额', width: 100, prop: 'amount', resizable: true},
|
|
|
+ {label: '应付总额', width: 100, prop: 'amountReceivable', resizable: true},
|
|
|
+ {label: '实付总额', width: 100, prop: 'amountReceived', resizable: true},
|
|
|
{label: '优惠总额', width: 100, prop: 'discountAmount', resizable: true},
|
|
|
{label: '退款扣除优惠', width: 125, prop: 'refundDiscountAmount', resizable: true},
|
|
|
// {
|