|
|
@@ -57,11 +57,15 @@
|
|
|
<template #cardusercdBillingtype="scope">
|
|
|
{{ scope.row.cardusercdBillingtype === '0' ? '综合计价' : '阶梯计价' }}
|
|
|
</template>
|
|
|
- <template #cardusercdPriceinfo="scope">
|
|
|
+ <template #priceconfigWaterunitprice="scope">
|
|
|
<div v-if="scope.row.cardusercdBillingtype === '0'">
|
|
|
- <span>水价:{{ JSON.parse(scope.row.cardusercdPriceinfo).priceconfigWaterunitprice }}</span>
|
|
|
- <br/>
|
|
|
- <span>电价:{{ JSON.parse(scope.row.cardusercdPriceinfo).priceconfigElectricityunitprice }} </span>
|
|
|
+ <span>{{ JSON.parse(scope.row.cardusercdPriceinfo).priceconfigWaterunitprice }}</span>
|
|
|
+ </div>
|
|
|
+ <div v-else>--</div>
|
|
|
+ </template>
|
|
|
+ <template #priceconfigElectricityunitprice="scope">
|
|
|
+ <div v-if="scope.row.cardusercdBillingtype === '0'">
|
|
|
+ <span>{{ JSON.parse(scope.row.cardusercdPriceinfo).priceconfigElectricityunitprice }} </span>
|
|
|
</div>
|
|
|
<div v-else>--</div>
|
|
|
</template>
|
|
|
@@ -173,9 +177,15 @@ export default {
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|
|
|
- label: '计费标准',
|
|
|
- prop: 'cardusercdPriceinfo',
|
|
|
- customRender: 'cardusercdPriceinfo',
|
|
|
+ label: '水价(元/m³)',
|
|
|
+ prop: 'priceconfigWaterunitprice',
|
|
|
+ customRender: 'priceconfigWaterunitprice',
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '电价(元/度)',
|
|
|
+ prop: 'priceconfigElectricityunitprice',
|
|
|
+ customRender: 'priceconfigElectricityunitprice',
|
|
|
align: 'center'
|
|
|
},
|
|
|
{
|