Compare commits
No commits in common. "657fe9c17a7940494bb581af0055717bd34eb37a" and "f48458b7ba8d790f9973ed149f6886cfebc903f0" have entirely different histories.
657fe9c17a
...
f48458b7ba
|
|
@ -215,7 +215,7 @@
|
|||
<span>氧化钙综合电耗</span>
|
||||
<p class="elec_number">
|
||||
{{ (Number(hotData.celec_consume_unit)+Number(dicData.b_sl_elec)).toFixed(2) }}
|
||||
<span class="elec_unit">kW·h/t</span>
|
||||
<span class="elec_unit">kW·h</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -967,23 +967,24 @@ export default {
|
|||
}
|
||||
// 第一个API查询
|
||||
let query1 = generateQuery("3853763443714961408");
|
||||
let maxId = 0;
|
||||
this.$API.enm.mpointstat.list.req(query1).then((response) => {
|
||||
response.forEach((item) => {
|
||||
let ind = item.day - 1;
|
||||
let maxId;
|
||||
response.forEach((item) => {
|
||||
let ind = item.day - 1;
|
||||
seriesData1[ind] = item.val || 0;
|
||||
if (ind > maxId) maxId = ind;
|
||||
maxId = ind;
|
||||
});
|
||||
|
||||
|
||||
// 第二个API查询
|
||||
let query2 = generateQuery("3853763444235055104");
|
||||
return this.$API.enm.mpointstat.list.req(query2);
|
||||
|
||||
|
||||
}).then((response) => {
|
||||
response.forEach((item) => {
|
||||
let ind = item.day - 1;
|
||||
let maxId;
|
||||
response.forEach((item) => {
|
||||
let ind = item.day - 1;
|
||||
seriesData3[ind] = item.val || 0;
|
||||
if (ind > maxId) maxId = ind;
|
||||
maxId = ind;
|
||||
});
|
||||
// 第三个API查询
|
||||
// let query3 = generateQuery("3853763443597520896");
|
||||
|
|
@ -1090,7 +1091,7 @@ export default {
|
|||
that.rateData[0].rate = item.run_rate
|
||||
;
|
||||
} else if (item.mgroup_name == "煤磨") {
|
||||
that.rateData[1].value = 11.23
|
||||
that.rateData[1].value = item.production_hour
|
||||
that.rateData[1].rate = item.run_rate
|
||||
;}
|
||||
// } else if (item.mgroup_name == "原料磨") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue