|
@@ -146,7 +146,7 @@
|
|
当日电量合计:{{sumQuantity}}度
|
|
当日电量合计:{{sumQuantity}}度
|
|
</view>
|
|
</view>
|
|
<view class="total-item">
|
|
<view class="total-item">
|
|
- 当日电费合计: 1.28元
|
|
|
|
|
|
+ 当日电费合计: {{sumFee}}元
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -410,7 +410,8 @@
|
|
meterId: '', //设备id
|
|
meterId: '', //设备id
|
|
titleName: '',
|
|
titleName: '',
|
|
clickType: 0,
|
|
clickType: 0,
|
|
- sumQuantity: 0,
|
|
|
|
|
|
+ sumQuantity: 0,
|
|
|
|
+ sumFee: 0,
|
|
equipmentInfosShow: false,
|
|
equipmentInfosShow: false,
|
|
kWhList: [],
|
|
kWhList: [],
|
|
queryDay: '',
|
|
queryDay: '',
|
|
@@ -722,6 +723,7 @@
|
|
}
|
|
}
|
|
this.hourMap = response.data.hourMap;
|
|
this.hourMap = response.data.hourMap;
|
|
this.sumQuantity = response.data.kwhMap.kwh;
|
|
this.sumQuantity = response.data.kwhMap.kwh;
|
|
|
|
+ this.sumFee = response.data.kwhMap.fee;
|
|
|
|
|
|
this.getBarCharts(this.hourMap, interval);
|
|
this.getBarCharts(this.hourMap, interval);
|
|
|
|
|