mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-05 02:20:12 +08:00
update 计算总量
This commit is contained in:
@@ -77,8 +77,12 @@
|
||||
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
||||
v-hasPermi="['order:order:export']">导出
|
||||
</el-button>
|
||||
<div v-for="totalDate in totalDateList">
|
||||
{{ totalDate.dateDescription }}期间,总用电量{{totalDate.sumUsedElectricity}}度,总消费金额{{ totalDate.sumOrderAmount }}元,总结算金额{{totalDate.sumSettleAmount}}元
|
||||
<div >
|
||||
<ul>
|
||||
<li v-for="totalDate in totalDateList" >
|
||||
{{ totalDate.dateDescription }}期间,总用电量{{totalDate.sumUsedElectricity}}度,总消费金额{{ totalDate.sumOrderAmount }}元,总结算金额{{totalDate.sumSettleAmount}}元
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<el-popover placement="top-start" width="400" trigger="click">
|
||||
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选
|
||||
@@ -379,10 +383,12 @@ export default {
|
||||
getOrderTotalData() {
|
||||
totalData(this.queryParams).then((response) => {
|
||||
console.log("getOrderTotalData", response);
|
||||
this.dateDescription = response.data.dateDescription;
|
||||
this.sumOrderAmount = response.data.sumOrderAmount;
|
||||
this.sumUsedElectricity = response.data.sumUsedElectricity;
|
||||
this.sumSettleAmount = response.data.sumSettleAmount;
|
||||
// this.dateDescription = response.data.dateDescription;
|
||||
// this.sumOrderAmount = response.data.sumOrderAmount;
|
||||
// this.sumUsedElectricity = response.data.sumUsedElectricity;
|
||||
// this.sumSettleAmount = response.data.sumSettleAmount;
|
||||
|
||||
this.totalDateList = response.data;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
|
||||
Reference in New Issue
Block a user