123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <template>
- <div class="parcel-box">
- <div class="search">
- <div class="search-left">
- <el-select
- size="mini"
- v-model="station"
- placeholder="请选择"
- style="margin-left: 15px"
- @change="stationChanged"
- >
- <el-option
- v-for="item in stationOptions"
- :key="item.id"
- :label="item.aname"
- :value="item.id"
- >
- </el-option>
- </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-radio-group v-model="filter" size="mini" >
- <el-radio label="1"> 同比 </el-radio>
- <el-radio label="2"> 环比 </el-radio>
- </el-radio-group>
- <el-button round size="mini" class="searchColor" @click="getDatas"
- >搜索</el-button
- >
- </div>
- </div>
- <div
- class="parcel-content"
- v-loading="loading"
- element-loading-background="rgba(4, 12, 11, 0.8)"
- >
- <!-- <img src="@/assets/imgs/glycfx-bg1.png" alt="" /> -->
- <div class="line clearfix">
- <div class="leftContent">
- <span>{{ selectValue }}</span>
- </div>
- </div>
- <div class="table-wrapper">
- <el-table
- :data="tableData"
- size="mini"
- stripe
- width="100%"
- height="100%"
- >
- <el-table-column align="center" label="指标名称" width="128">
- <template #default="{ row }">
- {{ row[0] }}
- </template>
- </el-table-column>
- <el-table-column
- v-for="(item, index) in tableHead.slice(1, 13)"
- :label="item.title"
- :key="index"
- align="center"
- show-overflow-tooltip
- >
-
- <el-table-column
- label="本月"
- width="66"
- v-if="filter == 1 || filter == 2"
- align="center"
- show-overflow-tooltip
- >
- <template #default="scope">
- <span>
- {{
- scope.row[index + 1][0] || scope.row[index + 1][0] == 0
- ? scope.row[index + 1][0]
- : "--"
- }}
- </span>
- </template>
- </el-table-column>
- <el-table-column
- label="同比"
- width="66"
- v-if="filter == 1"
- align="center"
- show-overflow-tooltip
- >
- <template #default="scope">
- <span>
- {{
- scope.row[index + 1][1] || scope.row[index + 1][1] == 0
- ? scope.row[index + 1][1]
- : "--"
- }}
- </span>
- </template>
- </el-table-column>
- <el-table-column
- label="环比"
- width="66"
- v-if="filter == 2"
- align="center"
- show-overflow-tooltip
- >
- <template #default="scope">
- <span>
- {{
- scope.row[index + 1][2] || scope.row[index + 1][2] == 0
- ? scope.row[index + 1][2]
- : "--"
- }}
- </span>
- </template>
- </el-table-column>
- </el-table-column>
- <el-table-column
- align="center"
- label="合计"
- width="76"
- show-overflow-tooltip
- >
- <template #default="{ row }">
- {{ row[13] }}
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="echarts">
- <div class="chart-wrapper">
- <LineCharts :list="list" width="100%" height="100%" />
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import LineCharts from "./components/lineCharts.vue";
- // import { companys } from "@/api/curveAnalyse";
- // import { GetStationByCompany } from "@/api/factoryMonitor/index.js";
- import {
- getOwnDemand,
- getAllStation,
- } from "@/api/monthlyPerformanceAnalysis.js";
- export default {
- name: "monthElectricAnalyseAll",
- components: {
- // ChartColumnar,
- // Panel,
- LineCharts,
- },
- data() {
- return {
- loading: false,
- list: [],
- barList: [],
- tableData: [],
- 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: "",
- companyOptions: [],
- station: "",
- stationOptions: [],
- year: "2023",
- selectValue: "综合厂用电量分析",
- headers: [
- "综合厂用电量",
- "发电量",
- "上网电量",
- "购网电量",
- "综合厂用电率(%)",
- ],
- filter: "1",
- };
- },
- watch: {},
- created() {
- this.getStation();
- },
- methods: {
- getStation() {
- getAllStation().then(({ data: res, code }) => {
- if (code == 200) {
- this.stationOptions = res;
- this.station = this.stationOptions[0].id;
- this.getDatas();
- }
- });
- },
- getDatas() {
- this.loading = true;
- getOwnDemand({ wpId: this.station, year: this.year }).then(
- ({ data, code }) => {
- if (code == 200) {
- //合计列
- let hj = [
- data.zhcydlsum,
- data.sjdlsum,
- data.swdlsum,
- data.gwdlsum,
- data.zhcydllsum + "%",
- ];
- //处理纵向表格数据
- 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 arr = [];
- for (var i = 0; i <= 4; i++) {
- let subArr = [];
- subKey[i].forEach((sub) => {
- subArr.push(row[sub]);
- });
- arr.push(subArr);
- }
- return arr;
- });
- // 加入标题拼接最终的数据
- this.tableData = matrixData[0].map((col, i) => {
- let newArr = new Array(
- this.tableHead.length - matrixData.length - 2
- ).fill(null);
- let array = [
- this.headers[i],
- ...matrixData.map((row) => {
- return row[i];
- }),
- ...newArr,
- hj[i],
- ];
- return array;
- });
- // .map((item) => {
- // item[item.length - 1] = [item[item.length - 1]];
- // return item;
- // });
- //处理图表数据
- let list = [
- {
- name: "综合厂用电量",
- data: resData.map((ele) => ele.zhcydl),
- color: "#4B55AE",
- },
- {
- name: "实发电量",
- data: resData.map((ele) => ele.sjdl),
- color: "#05BB4C",
- },
- {
- name: "上网电量",
- data: resData.map((ele) => ele.swdl),
- color: "#21a4f7",
- },
- {
- name: "购网电量",
- data: resData.map((ele) => ele.gwdl),
- color: "#FF8300",
- },
- ];
- this.list = list;
- this.loading = false;
- }
- }
- );
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .parcel-box {
- padding: 0 20px;
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- .search {
- display: flex;
- flex-direction: row;
- padding: 15px 0;
- align-items: center;
- justify-content: space-between;
- .search-left {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .search-right {
- position: relative;
- .select-back {
- position: absolute;
- right: 5px;
- top: 0px;
- z-index: 0;
- }
- .title-select {
- z-index: 2;
- }
- }
- button {
- margin-left: 10px;
- background: rgba(67, 81, 107, 0.3);
- border: 1px solid #274934;
- color: #b3b3b3;
- }
- .searchColor {
- background-color: rgba(5, 187, 76, 0.2);
- border: 1px solid #3b6c53;
- color: #b3b3b3;
- font-size: 14px;
- &:hover {
- background-color: rgba(5, 187, 76, 0.5);
- color: #ffffff;
- }
- }
- }
- .parcel-content {
- width: 100%;
- height: calc(100% - 88px);
- // position: relative;
- background: url("~@/assets/imgs/glycfx-bg1.png") no-repeat;
- background-size: 100% 100%;
- background-position: center;
- img {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- }
- .line {
- .leftContent {
- width: 242px;
- height: 45px;
- line-height: 45px;
- background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
- span {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #05bb4c;
- margin-left: 25px;
- }
- }
- }
- .echarts {
- height: calc(100% - 305px - 45px);
- padding: 0 20px;
- .chart-wrapper {
- height: 100%;
- width: 100%;
- }
- }
- .table-wrapper {
- height: 305px;
- width: 100%;
- padding: 0 20px;
- padding-top: 10px;
- }
- }
- }
- .el-radio-group::v-deep {
- margin-left: 15px;
- display: flex;
- align-items: center;
- .el-radio__inner:hover {
- border-color: #05bb4c;
- }
- }
- .el-table--border::v-deep {
- th.el-table__cell {
- border-bottom: 1px solid #000 !important;
- }
- }
- </style>
|