|
@@ -4,20 +4,6 @@
|
|
<div class="search-left">
|
|
<div class="search-left">
|
|
<el-select
|
|
<el-select
|
|
size="mini"
|
|
size="mini"
|
|
- v-model="company"
|
|
|
|
- placeholder="请选择"
|
|
|
|
- @change="companyChanged"
|
|
|
|
- >
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in companyOptions"
|
|
|
|
- :key="item.id"
|
|
|
|
- :label="item.aname"
|
|
|
|
- :value="item.id"
|
|
|
|
- >
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- <el-select
|
|
|
|
- size="mini"
|
|
|
|
v-model="station"
|
|
v-model="station"
|
|
placeholder="请选择"
|
|
placeholder="请选择"
|
|
style="margin-left: 15px"
|
|
style="margin-left: 15px"
|
|
@@ -31,6 +17,16 @@
|
|
>
|
|
>
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
|
|
+ <el-date-picker
|
|
|
|
+ size="mini"
|
|
|
|
+ type="year"
|
|
|
|
+ v-model="year"
|
|
|
|
+ value-format="YYYY"
|
|
|
|
+ placeholder="请选择"
|
|
|
|
+ style="margin-left: 15px"
|
|
|
|
+ popper-class="date-select"
|
|
|
|
+ >
|
|
|
|
+ </el-date-picker>
|
|
<el-button round size="mini" class="searchColor" @click="getDatas"
|
|
<el-button round size="mini" class="searchColor" @click="getDatas"
|
|
>搜索</el-button
|
|
>搜索</el-button
|
|
>
|
|
>
|
|
@@ -55,25 +51,46 @@
|
|
width="100%"
|
|
width="100%"
|
|
height="100%"
|
|
height="100%"
|
|
>
|
|
>
|
|
|
|
+ <el-table-column align="center" label="指标名称" width="120">
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
+ {{ row[0] }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
- v-for="(item, index) in tableHead"
|
|
|
|
- :label="item"
|
|
|
|
|
|
+ v-for="(item, index) in tableHead.slice(1, 13)"
|
|
|
|
+ :label="item.title"
|
|
:key="index"
|
|
:key="index"
|
|
align="center"
|
|
align="center"
|
|
- :width="item == '指标名称' ? '200px' : ''"
|
|
|
|
show-overflow-tooltip
|
|
show-overflow-tooltip
|
|
>
|
|
>
|
|
- <!-- <el-table-column label="同比"></el-table-column>
|
|
|
|
- <el-table-column label="环比"></el-table-column>
|
|
|
|
- <el-table-column label="本月"></el-table-column> -->
|
|
|
|
- <template #default="scope">
|
|
|
|
- <span>
|
|
|
|
- {{
|
|
|
|
- scope.row[index] || scope.row[index] == 0
|
|
|
|
- ? scope.row[index]
|
|
|
|
- : "--"
|
|
|
|
- }}
|
|
|
|
- </span>
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ v-for="(subItem, subIndex) in item.children"
|
|
|
|
+ :key="subIndex"
|
|
|
|
+ :label="subItem"
|
|
|
|
+ align="center"
|
|
|
|
+ width="45"
|
|
|
|
+ show-overflow-tooltip
|
|
|
|
+ ><template #default="scope">
|
|
|
|
+ <span>
|
|
|
|
+ <!-- {{ scope.row[index + 1][subIndex] }} -->
|
|
|
|
+ {{
|
|
|
|
+ scope.row[index + 1][subIndex] ||
|
|
|
|
+ scope.row[index + 1][subIndex] == 0
|
|
|
|
+ ? scope.row[index + 1][subIndex]
|
|
|
|
+ : "--"
|
|
|
|
+ }}
|
|
|
|
+ </span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ align="center"
|
|
|
|
+ label="合计"
|
|
|
|
+ width="45"
|
|
|
|
+ show-overflow-tooltip
|
|
|
|
+ >
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
+ {{ row[13] }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -89,11 +106,14 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import LineCharts from "./components/lineCharts.vue";
|
|
import LineCharts from "./components/lineCharts.vue";
|
|
-import { companys } from "@/api/curveAnalyse";
|
|
|
|
-import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
|
|
|
|
-import { getMonthElectricAnalyseGf } from "@/api/monthlyPerformanceAnalysis.js";
|
|
|
|
|
|
+// import { companys } from "@/api/curveAnalyse";
|
|
|
|
+// import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
|
|
|
|
+import {
|
|
|
|
+ getOwnDemand,
|
|
|
|
+ getAllStation,
|
|
|
|
+} from "@/api/monthlyPerformanceAnalysis.js";
|
|
export default {
|
|
export default {
|
|
- name: "monthElectricAnalyseGf",
|
|
|
|
|
|
+ name: "monthElectricAnalyseAll",
|
|
components: {
|
|
components: {
|
|
// ChartColumnar,
|
|
// ChartColumnar,
|
|
// Panel,
|
|
// Panel,
|
|
@@ -106,94 +126,83 @@ export default {
|
|
barList: [],
|
|
barList: [],
|
|
tableData: [],
|
|
tableData: [],
|
|
tableHead: [
|
|
tableHead: [
|
|
- "指标名称",
|
|
|
|
- "一月",
|
|
|
|
- "二月",
|
|
|
|
- "三月",
|
|
|
|
- "四月",
|
|
|
|
- "五月",
|
|
|
|
- "六月",
|
|
|
|
- "七月",
|
|
|
|
- "八月",
|
|
|
|
- "九月",
|
|
|
|
- "十月",
|
|
|
|
- "十一月",
|
|
|
|
- "十二月",
|
|
|
|
- "合计",
|
|
|
|
|
|
+ { title: "指标名称", children: [] },
|
|
|
|
+ { title: "一月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "二月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "三月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "四月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "五月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "六月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "七月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "八月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "九月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "十月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "十一月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "十二月", children: ["本月", "同比", "环比"] },
|
|
|
|
+ { title: "合计", children: [] },
|
|
],
|
|
],
|
|
|
|
+
|
|
company: "",
|
|
company: "",
|
|
companyOptions: [],
|
|
companyOptions: [],
|
|
station: "",
|
|
station: "",
|
|
stationOptions: [],
|
|
stationOptions: [],
|
|
- selectValue: "光伏电量分析",
|
|
|
|
|
|
+ year: "2023",
|
|
|
|
+ selectValue: "综合厂用电量分析",
|
|
headers: [
|
|
headers: [
|
|
- "日照强度(W/m²)",
|
|
|
|
- "实发电量",
|
|
|
|
- "计划电量",
|
|
|
|
- "计划完成情况(%)",
|
|
|
|
- "可研电量",
|
|
|
|
- "可研完成情况(%)",
|
|
|
|
- "等效发电小时(h)",
|
|
|
|
|
|
+ "综合厂用电量",
|
|
|
|
+ "发电量",
|
|
|
|
+ "上网电量",
|
|
|
|
+ "购网电量",
|
|
|
|
+ "综合厂用电率(%)",
|
|
],
|
|
],
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {},
|
|
watch: {},
|
|
created() {
|
|
created() {
|
|
- this.initialization();
|
|
|
|
|
|
+ this.getStation();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- initialization() {
|
|
|
|
- companys().then(({ data: res }) => {
|
|
|
|
- if (res.data) {
|
|
|
|
- this.companyOptions = [res.data[1]];
|
|
|
|
- this.company = res.data[1].id;
|
|
|
|
- this.getStation();
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- companyChanged() {
|
|
|
|
- this.station = "";
|
|
|
|
- this.getStation();
|
|
|
|
- },
|
|
|
|
|
|
+
|
|
getStation() {
|
|
getStation() {
|
|
- GetStationByCompany({ companyids: this.company, type: -2 }).then(
|
|
|
|
- ({ data: res, code }) => {
|
|
|
|
- if (res.code == 200) {
|
|
|
|
- this.stationOptions = res.data;
|
|
|
|
- this.station = this.stationOptions[0].id;
|
|
|
|
- this.getDatas();
|
|
|
|
- }
|
|
|
|
|
|
+ getAllStation().then(({ data: res, code }) => {
|
|
|
|
+ if (code == 200) {
|
|
|
|
+ this.stationOptions = res;
|
|
|
|
+ this.station = this.stationOptions[0].id;
|
|
|
|
+ this.getDatas();
|
|
}
|
|
}
|
|
- );
|
|
|
|
|
|
+ });
|
|
},
|
|
},
|
|
getDatas() {
|
|
getDatas() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
- getMonthElectricAnalyseGf({ wpId: this.station }).then(
|
|
|
|
|
|
+ getOwnDemand({ wpId: this.station, year: this.year }).then(
|
|
({ data, code }) => {
|
|
({ data, code }) => {
|
|
if (code == 200) {
|
|
if (code == 200) {
|
|
//合计列
|
|
//合计列
|
|
let hj = [
|
|
let hj = [
|
|
- data.rzqdhj,
|
|
|
|
- data.sjdlhj,
|
|
|
|
- data.jhdlhj,
|
|
|
|
- data.wcqkhj + "%",
|
|
|
|
- data.kydlhj,
|
|
|
|
- data.kywcqkhj + "%",
|
|
|
|
- data.dxxsshj,
|
|
|
|
|
|
+ data.zhcydlsum,
|
|
|
|
+ data.sjdlsum,
|
|
|
|
+ data.swdlsum,
|
|
|
|
+ data.gwdlsum,
|
|
|
|
+ data.zhcydllsum + "%",
|
|
];
|
|
];
|
|
//处理纵向表格数据
|
|
//处理纵向表格数据
|
|
let resData = JSON.parse(JSON.stringify(data.value));
|
|
let resData = JSON.parse(JSON.stringify(data.value));
|
|
|
|
+ let subKey = [
|
|
|
|
+ ["zhcydl", "zhcydltb", "zhcydlhb"],
|
|
|
|
+ ["sjdl", "sjdltb", "sjdlhb"],
|
|
|
|
+ ["swdl", "swdltb", "swdlhb"],
|
|
|
|
+ ["gwdl", "gwdltb", "gwdlhb"],
|
|
|
|
+ ["zhcydll", "zhcydlltb", "zhcydllhb"],
|
|
|
|
+ ];
|
|
// 数组按矩阵思路, 变成转置矩阵
|
|
// 数组按矩阵思路, 变成转置矩阵
|
|
let matrixData = resData.map((row) => {
|
|
let matrixData = resData.map((row) => {
|
|
let arr = [];
|
|
let arr = [];
|
|
- for (let key in row) {
|
|
|
|
- if (key != "hours") {
|
|
|
|
- if (key == "wcqk" || key == "kywcqk") {
|
|
|
|
- arr.push(row[key] ? row[key] + "%" : row[key]);
|
|
|
|
- } else {
|
|
|
|
- arr.push(row[key]);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ for (var i = 0; i <= 4; i++) {
|
|
|
|
+ let subArr = [];
|
|
|
|
+ subKey[i].forEach((sub) => {
|
|
|
|
+ subArr.push(row[sub]);
|
|
|
|
+ });
|
|
|
|
+ arr.push(subArr);
|
|
}
|
|
}
|
|
return arr;
|
|
return arr;
|
|
});
|
|
});
|
|
@@ -212,12 +221,16 @@ export default {
|
|
];
|
|
];
|
|
return array;
|
|
return array;
|
|
});
|
|
});
|
|
|
|
+ // .map((item) => {
|
|
|
|
+ // item[item.length - 1] = [item[item.length - 1]];
|
|
|
|
+ // return item;
|
|
|
|
+ // });
|
|
|
|
|
|
//处理图表数据
|
|
//处理图表数据
|
|
let list = [
|
|
let list = [
|
|
{
|
|
{
|
|
- name: "计划电量",
|
|
|
|
- data: resData.map((ele) => ele.jhdl),
|
|
|
|
|
|
+ name: "综合厂用电量",
|
|
|
|
+ data: resData.map((ele) => ele.zhcydl),
|
|
color: "#4B55AE",
|
|
color: "#4B55AE",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -226,13 +239,13 @@ export default {
|
|
color: "#05BB4C",
|
|
color: "#05BB4C",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- name: "可研电量",
|
|
|
|
- data: resData.map((ele) => ele.sjdl),
|
|
|
|
|
|
+ name: "上网电量",
|
|
|
|
+ data: resData.map((ele) => ele.swdl),
|
|
color: "#21a4f7",
|
|
color: "#21a4f7",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- name: "日照强度",
|
|
|
|
- data: resData.map((ele) => ele.rzqd),
|
|
|
|
|
|
+ name: "购网电量",
|
|
|
|
+ data: resData.map((ele) => ele.gwdl),
|
|
color: "#FF8300",
|
|
color: "#FF8300",
|
|
},
|
|
},
|
|
];
|
|
];
|
|
@@ -332,7 +345,7 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.echarts {
|
|
.echarts {
|
|
- height: calc(100% - 310px - 45px);
|
|
|
|
|
|
+ height: calc(100% - 305px - 45px);
|
|
padding: 0 20px;
|
|
padding: 0 20px;
|
|
.chart-wrapper {
|
|
.chart-wrapper {
|
|
height: 100%;
|
|
height: 100%;
|
|
@@ -340,7 +353,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.table-wrapper {
|
|
.table-wrapper {
|
|
- height: 310px;
|
|
|
|
|
|
+ height: 305px;
|
|
width: 100%;
|
|
width: 100%;
|
|
padding: 0 20px;
|
|
padding: 0 20px;
|
|
padding-top: 10px;
|
|
padding-top: 10px;
|