|
@@ -8,73 +8,127 @@
|
|
:prop="item.prop"
|
|
:prop="item.prop"
|
|
:key="index"
|
|
:key="index"
|
|
align="center"
|
|
align="center"
|
|
- @row-click="rowClick"
|
|
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
>
|
|
>
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
+ <span
|
|
|
|
+ style="cursor: pointer"
|
|
|
|
+ v-if="item.prop == 'name'"
|
|
|
|
+ @click.stop="rowClick(row, false)"
|
|
|
|
+ >{{ row[item.prop] }}
|
|
|
|
+ </span>
|
|
|
|
+ <span v-else>{{ row[item.prop] }}</span>
|
|
|
|
+ </template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
- <div class="chart-wrapper">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="chart-wrapper"
|
|
|
|
+ v-loading="chartLoading"
|
|
|
|
+ element-loading-text="加载中..."
|
|
|
|
+ element-loading-background="rgba(4, 12, 11, 0.8)"
|
|
|
|
+ >
|
|
<div class="left-chart">
|
|
<div class="left-chart">
|
|
<lineCharts
|
|
<lineCharts
|
|
:unit="'m/s'"
|
|
:unit="'m/s'"
|
|
:windCurveValues="lineChart"
|
|
:windCurveValues="lineChart"
|
|
- :CurveTitle="chartName"
|
|
|
|
|
|
+ :CurveTitle="chartName + '实时风速'"
|
|
width="100%"
|
|
width="100%"
|
|
:color="'#05bb4c'"
|
|
:color="'#05bb4c'"
|
|
height="100%"
|
|
height="100%"
|
|
chartId="wind-fs"
|
|
chartId="wind-fs"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
- <div class="right-chart"></div>
|
|
|
|
|
|
+ <div class="right-chart">
|
|
|
|
+ <radarChart width="100%" height="100%" :list="radarChart" />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import lineCharts from "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic/components/lineCharts.vue";
|
|
import lineCharts from "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic/components/lineCharts.vue";
|
|
|
|
+import radarChart from "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic/components/radar-chart.vue";
|
|
import dayjs from "dayjs";
|
|
import dayjs from "dayjs";
|
|
-import { FindGroupRealtime } from "@/api/home/home.js";
|
|
|
|
|
|
+import {
|
|
|
|
+ getWindAnalysis,
|
|
|
|
+ getWindAnalysisChart,
|
|
|
|
+ getWindAnalysisRadarChart,
|
|
|
|
+} from "@/api/monthlyPerformanceAnalysis.js";
|
|
export default {
|
|
export default {
|
|
name: "Wind", //风资源分析
|
|
name: "Wind", //风资源分析
|
|
- components: { lineCharts },
|
|
|
|
- props: {},
|
|
|
|
|
|
+ components: { lineCharts, radarChart },
|
|
|
|
+ props: {
|
|
|
|
+ date: {
|
|
|
|
+ type: String,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- tableData: [...new Array(24)].map((i, index) => {
|
|
|
|
- let a = Math.random() * (100 - 1 + 1) + 1;
|
|
|
|
- return {
|
|
|
|
- name: "#" + (index + 1),
|
|
|
|
- pjfs: a.toFixed(2),
|
|
|
|
- maxf: Math.random() * (100 - 1 + 1) + 1,
|
|
|
|
- minf: Math.random() * (100 - 1 + 1) + 1,
|
|
|
|
- pjfx: Math.random() * (100 - 1 + 1) + 1,
|
|
|
|
- };
|
|
|
|
- }),
|
|
|
|
|
|
+ chartLoading: false,
|
|
|
|
+ tableData: [],
|
|
tableHead: [
|
|
tableHead: [
|
|
{ prop: "name", label: "场站名称" },
|
|
{ prop: "name", label: "场站名称" },
|
|
- { prop: "pjfs", label: "平均风速" },
|
|
|
|
- { prop: "maxf", label: "最大风速" },
|
|
|
|
- { prop: "minf", label: "最小风速" },
|
|
|
|
|
|
+ { prop: "pjfs", label: "平均风速(m/s)" },
|
|
|
|
+ { prop: "zdfs", label: "最大风速(m/s)" },
|
|
|
|
+ { prop: "zxfs", label: "最小风速(m/s)" },
|
|
{ prop: "pjfx", label: "平均风向" },
|
|
{ prop: "pjfx", label: "平均风向" },
|
|
],
|
|
],
|
|
- chartName: "实时风速",
|
|
|
|
- lineChart: [...new Array(24)].map((i, index) => {
|
|
|
|
- let a = Math.random() * (100 - 1 + 1) + 1;
|
|
|
|
- return {
|
|
|
|
- value: a.toFixed(2),
|
|
|
|
- dateTime: dayjs()
|
|
|
|
- .startOf("day")
|
|
|
|
- .add(index, "hour")
|
|
|
|
- .format("YYYY-MM-DD HH:mm"),
|
|
|
|
- };
|
|
|
|
- }),
|
|
|
|
- uniformCode: "SSPJFS",
|
|
|
|
|
|
+ chartName: "",
|
|
|
|
+ lineChart: [],
|
|
|
|
+ radarChart: [],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
|
|
+ created() {
|
|
|
|
+ this.getData(true);
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
- rowClick(row) {
|
|
|
|
- console.log(row);
|
|
|
|
|
|
+ rowClick(row, flag) {
|
|
|
|
+ console.log(row, flag);
|
|
|
|
+ if (flag) {
|
|
|
|
+ this.chartLoading = false;
|
|
|
|
+ } else {
|
|
|
|
+ this.chartLoading = true;
|
|
|
|
+ }
|
|
|
|
+ if (Object.keys(row).length) {
|
|
|
|
+ this.chartName = row.name;
|
|
|
|
+ this.getLineChart(row.wpid);
|
|
|
|
+ this.getRadarChart(row.wpid);
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ getData(val) {
|
|
|
|
+ this.BASE.showLoading();
|
|
|
|
+ getWindAnalysis(this.date).then((res) => {
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ this.tableData = res.data ? res.data : [];
|
|
|
|
+ this.rowClick(this.tableData[0] || {}, val);
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ getLineChart(wpid) {
|
|
|
|
+ getWindAnalysisChart({ Data: this.date, wpid }).then((res) => {
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ this.lineChart = res.data
|
|
|
|
+ ? res.data.map((item) => {
|
|
|
|
+ return {
|
|
|
|
+ dateTime: dayjs(item.time).format("MM-DD HH:mm"),
|
|
|
|
+ value: item.value6,
|
|
|
|
+ };
|
|
|
|
+ })
|
|
|
|
+ : [];
|
|
|
|
+ }
|
|
|
|
+ this.chartLoading = false;
|
|
|
|
+ this.BASE.closeLoading();
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ getRadarChart(wpid) {
|
|
|
|
+ getWindAnalysisRadarChart({ Data: this.date, wpid }).then((res) => {
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ this.radarChart = res.data && res.data[0].count ? res.data[0].count : [];
|
|
|
|
+ }
|
|
|
|
+ this.chartLoading = false;
|
|
|
|
+ this.BASE.closeLoading();
|
|
|
|
+ });
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
};
|
|
@@ -87,18 +141,22 @@ export default {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
.table-wrapper {
|
|
.table-wrapper {
|
|
- height: calc(100% - 450px - 20px);
|
|
|
|
|
|
+ height: calc(100% - 390px - 20px);
|
|
width: 100%;
|
|
width: 100%;
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
.chart-wrapper {
|
|
.chart-wrapper {
|
|
- height: 450px;
|
|
|
|
|
|
+ height: 390px;
|
|
display: flex;
|
|
display: flex;
|
|
width: 100%;
|
|
width: 100%;
|
|
.left-chart {
|
|
.left-chart {
|
|
width: 65%;
|
|
width: 65%;
|
|
height: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
+ .right-chart {
|
|
|
|
+ width: 34%;
|
|
|
|
+ height: 100%;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|