|
@@ -77,10 +77,8 @@
|
|
|
style="width: 100%; height: calc(100% - 39px); margin-top: 10px"
|
|
|
v-if="showFlag"
|
|
|
>
|
|
|
- <power-echarts
|
|
|
- :predictFlag="true"
|
|
|
+ <power-echarts
|
|
|
:CurveValues="powerList"
|
|
|
- :ratio="1000"
|
|
|
width="100%"
|
|
|
unit="MW"
|
|
|
height="100%"
|
|
@@ -252,6 +250,7 @@ import dayjs from "dayjs";
|
|
|
import PieChart from "@/views/stateMonitor/factoryMonitor/windPowerPlant/components/pieChart";
|
|
|
import BarCharts from "@/views/stateMonitor/factoryMonitor/windPowerPlant/components/barCharts";
|
|
|
import LineCharts from "@/views/stateMonitor/factoryMonitor/windPowerPlant/components/lineCharts";
|
|
|
+import { FindPowerInfo } from "@/api/home/home.js";
|
|
|
export default {
|
|
|
name: "lighthome", //光伏场站
|
|
|
components: {
|
|
@@ -753,36 +752,93 @@ export default {
|
|
|
this.getJrPoints(pointId);
|
|
|
});
|
|
|
},
|
|
|
+ // // 查询24小时功率数据
|
|
|
+ // getPoints(pointIds) {
|
|
|
+ // GetPointFitting({
|
|
|
+ // begin: dayjs().startOf("date").format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ // end: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ // interval: 60 * 30,
|
|
|
+ // pointIds,
|
|
|
+ // }).then((res) => {
|
|
|
+ // if (res.data.data.length) {
|
|
|
+ // let powerLineChartData = [];
|
|
|
+ // let resData = res.data.data;
|
|
|
+ // resData.forEach((value, index) => {
|
|
|
+ // var option = {
|
|
|
+ // title:
|
|
|
+ // this.ined == 3
|
|
|
+ // ? this.tmpData[index].stse + this.tmpData[index].statiomName
|
|
|
+ // : this.tmpData[index].statiomName,
|
|
|
+ // tagName: this.tmpData[index].sts,
|
|
|
+ // yAxisIndex: 0,
|
|
|
+ // value: value.map((item) => {
|
|
|
+ // return {
|
|
|
+ // dateTime: item.pointTime,
|
|
|
+ // value: item.pointValueInDouble,
|
|
|
+ // };
|
|
|
+ // }),
|
|
|
+ // noRatio: true,
|
|
|
+ // };
|
|
|
+ // powerLineChartData.push(option);
|
|
|
+ // });
|
|
|
+ // this.powerList = powerLineChartData;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // },
|
|
|
// 查询24小时功率数据
|
|
|
- getPoints(pointIds) {
|
|
|
- GetPointFitting({
|
|
|
- begin: dayjs().startOf("date").format("YYYY-MM-DD HH:mm:ss"),
|
|
|
- end: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
- interval: 60 * 30,
|
|
|
- pointIds,
|
|
|
- }).then((res) => {
|
|
|
- if (res.data.data.length) {
|
|
|
- let powerLineChartData = [];
|
|
|
- let resData = res.data.data;
|
|
|
- resData.forEach((value, index) => {
|
|
|
- var option = {
|
|
|
- title:
|
|
|
- this.ined == 3
|
|
|
- ? this.tmpData[index].stse + this.tmpData[index].statiomName
|
|
|
- : this.tmpData[index].statiomName,
|
|
|
- tagName: this.tmpData[index].sts,
|
|
|
- yAxisIndex: 0,
|
|
|
- value: value.map((item) => {
|
|
|
- return {
|
|
|
- dateTime: item.pointTime,
|
|
|
- value: item.pointValueInDouble,
|
|
|
- };
|
|
|
- }),
|
|
|
- noRatio: true,
|
|
|
+ getPoints() {
|
|
|
+ FindPowerInfo({ id: this.stationCode }).then((res) => {
|
|
|
+ if (res.data) {
|
|
|
+ let Powertrend = {
|
|
|
+ // 图表所用单位
|
|
|
+ units: ["(万KWh)", ""],
|
|
|
+ value: [
|
|
|
+ {
|
|
|
+ title: "预测功率",
|
|
|
+ smooth: true, // 使用单位
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "理论功率",
|
|
|
+ smooth: true, // 使用单位
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "实际功率",
|
|
|
+ smooth: true, // 使用单位
|
|
|
+ value: [],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
+
|
|
|
+ Powertrend.value[0].value = res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ dateTime: dayjs()
|
|
|
+ .startOf("date")
|
|
|
+ .add(item.hours, "hour")
|
|
|
+ .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ value: item.bzgl,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ Powertrend.value[1].value = res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ dateTime: dayjs()
|
|
|
+ .startOf("date")
|
|
|
+ .add(item.hours, "hour")
|
|
|
+ .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ value: item.llgl,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ Powertrend.value[2].value = res.data.map((item) => {
|
|
|
+ return {
|
|
|
+ dateTime: dayjs()
|
|
|
+ .startOf("date")
|
|
|
+ .add(item.hours, "hour")
|
|
|
+ .format("YYYY-MM-DD HH:mm:ss"),
|
|
|
+ value: item.sjgl,
|
|
|
};
|
|
|
- powerLineChartData.push(option);
|
|
|
});
|
|
|
- this.powerList = powerLineChartData;
|
|
|
+ this.powerList = Powertrend.value;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -792,7 +848,7 @@ export default {
|
|
|
GetPointFitting({
|
|
|
begin: dayjs().startOf("date").format("YYYY-MM-DD HH:mm:ss"),
|
|
|
end: dayjs().format("YYYY-MM-DD HH:mm:ss"),
|
|
|
- interval: 60 * 30,
|
|
|
+ interval: 60 * 60,
|
|
|
pointIds: pointId,
|
|
|
}).then((res) => {
|
|
|
if (res.data.data.length) {
|
|
@@ -821,7 +877,7 @@ export default {
|
|
|
.subtract(1, "days")
|
|
|
.endOf("date")
|
|
|
.format("YYYY-MM-DD HH:mm:ss"),
|
|
|
- interval: 60 * 30,
|
|
|
+ interval: 60 * 60,
|
|
|
pointIds: pointId,
|
|
|
}).then((res) => {
|
|
|
if (res.data.data.length) {
|