|
|
@@ -129,10 +129,14 @@
|
|
|
<el-tag type="success">{{state.extraData.totalPower}} 度</el-tag>
|
|
|
<span class="ml5">订单金额:</span>
|
|
|
<el-tag type="success">{{u.fmt.fmtMoney(state.extraData.totalMoney)}} 元</el-tag>
|
|
|
- <span class="ml5"> 实付电费:</span>
|
|
|
+ <span class="ml5"> 电费:</span>
|
|
|
<el-tag type="success">{{u.fmt.fmtMoney(state.extraData.elecMoney)}} 元</el-tag>
|
|
|
- <span class="ml5">实付服务费:</span>
|
|
|
+ <span class="ml5">服务费:</span>
|
|
|
<el-tag type="success">{{u.fmt.fmtMoney(state.extraData.serviceMoney)}} 元</el-tag>
|
|
|
+ <span class="ml5">服务费优惠:</span>
|
|
|
+ <el-tag type="success">{{u.fmt.fmtMoney(state.extraData.serviceMoneyDiscount)}} 元</el-tag>
|
|
|
+ <span class="ml5">实付服务费:</span>
|
|
|
+ <el-tag type="success">{{u.fmt.fmtMoney(state.extraData.payServiceAmount)}} 元</el-tag>
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
@@ -169,6 +173,12 @@
|
|
|
<template v-else-if="'totalMoney'===field.prop">
|
|
|
{{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
</template>
|
|
|
+ <template v-else-if="'elecMoney'===field.prop">
|
|
|
+ {{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
+ </template>
|
|
|
+ <template v-else-if="'serviceMoney'===field.prop">
|
|
|
+ {{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
+ </template>
|
|
|
<template v-else-if="'payAmount'===field.prop">
|
|
|
{{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
</template>
|
|
|
@@ -178,10 +188,7 @@
|
|
|
<template v-else-if="'serviceMoneyDiscount'===field.prop">
|
|
|
{{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
</template>
|
|
|
- <template v-else-if="'elecMoney'===field.prop">
|
|
|
- {{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
- </template>
|
|
|
- <template v-else-if="'serviceMoney'===field.prop">
|
|
|
+ <template v-else-if="'payServiceAmount'===field.prop">
|
|
|
{{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
</template>
|
|
|
<template v-else-if="'orderStatus'===field.prop">
|
|
|
@@ -260,8 +267,9 @@ const state = reactive({
|
|
|
{label: '订单总金额(元)', prop: 'totalMoney', width:150, resizable: true},
|
|
|
{label: '服务费优惠(元)', prop: 'serviceMoneyDiscount', width:150, resizable: true},
|
|
|
{label: '实付金额(元)', prop: 'payAmount', width:150, resizable: true},
|
|
|
- {label: '累积电费(元)', prop: 'elecMoney', width:140, resizable: true},
|
|
|
- {label: '累积服务费(元)', prop: 'serviceMoney', width:150, resizable: true},
|
|
|
+ {label: '总电费(元)', prop: 'elecMoney', width:140, resizable: true},
|
|
|
+ {label: '总服务费(元)', prop: 'serviceMoney', width:150, resizable: true},
|
|
|
+ {label: '实付服务费(元)', prop: 'payServiceAmount', width:150, resizable: true},
|
|
|
// {label: '时段数:0~32', prop: 'sumPeriod', width:150, resizable: true},
|
|
|
// {label: '充电明细信息', prop: 'chargeDetail', width:150, resizable: true},
|
|
|
{label: '订单状态', prop: 'orderStatus', width:120, resizable: true},
|