Browse Source

1.设备监控热量表弹框添加累计热量

2.修改设备热量分析和系统热量总览的总目录数
gh_ers
selia-zx 2 weeks ago
parent
commit
65a43438c9
  1. 8
      src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue
  2. 2
      src/views/heatRecoverySys/heatOverview/index.vue
  3. 5
      src/views/heatRecoverySys/thermalAnalysis/components/equipment.vue

8
src/views/heatRecoverySys/deviceMonitor/monitorCenter.vue

@ -329,6 +329,12 @@
{{ getHotMeterTemp(hotDialogArr, "瞬时流量", 31) }}/h {{ getHotMeterTemp(hotDialogArr, "瞬时流量", 31) }}/h
</div> </div>
</div> </div>
<div class="hot-data">
<div class="hot-text">热能量累积量</div>
<div class="hot-details">
{{ getHotMeterTemp(hotDialogArr, "累积热量", 47) }}kwh
</div>
</div>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
@ -1439,7 +1445,7 @@ export default {
border-radius: 10px; border-radius: 10px;
padding: 8px 10px; padding: 8px 10px;
font-size: 16px; font-size: 16px;
width: 120px; width: 180px;
text-align: center; text-align: center;
font-weight: bold; font-weight: bold;
letter-spacing: 0.1em; letter-spacing: 0.1em;

2
src/views/heatRecoverySys/heatOverview/index.vue

@ -427,7 +427,7 @@ export default {
cold: res.data[0].cold[index].toString(), // cold: res.data[0].cold[index].toString(), //
cop: res.data[2].cop[index].toString(), // cop: res.data[2].cop[index].toString(), //
})); }));
this.pageParm.total = res.data.totalPages; this.pageParm.total = res.data[5].total;
} else { } else {
this.tableData = []; this.tableData = [];
} }

5
src/views/heatRecoverySys/thermalAnalysis/components/equipment.vue

@ -516,7 +516,7 @@ export default {
}; };
}), }),
]; ];
this.pageParm.total = res.data.totalPages; this.pageParm.total = res.data[3].total;
console.log("header", this.headers); console.log("header", this.headers);
} else { } else {
this.tableData = []; this.tableData = [];
@ -869,4 +869,7 @@ export default {
width: 2.5rem !important; width: 2.5rem !important;
} }
} }
.page {
margin-top: 0.1rem;
}
</style> </style>

Loading…
Cancel
Save