123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254 |
- <template>
- <div class="parcel-box">
- <div class="form-wrapper">
- <el-select
- size="mini"
- :disabled="displayDetail"
- v-model="company"
- placeholder="请选择"
- @change="handleCompanyChange(company)"
- >
- <el-option
- v-for="item in companyOptions"
- :key="item.id"
- :label="item.aname"
- :value="item.id"
- >
- </el-option>
- </el-select>
- <div class="tabCut">
- <div
- @click="tabClick(val.id)"
- :class="[
- tabIndex === val.id ? 'active' : '',
- displayDetail ? 'disabled' : '',
- ]"
- v-for="val in tabOptions"
- :key="val.id"
- >
- <span>{{ val.name }}</span>
- </div>
- </div>
- <div class="station">
- 场站:
- <el-select
- size="mini"
- :disabled="displayDetail"
- v-model="stationObj"
- placeholder="请选择"
- @change="handleStationChange(stationObj)"
- clearable
- >
- <el-option
- v-for="item in stationList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </div>
- <div class="station">
- 开始日期
- <div class="search-input">
- <el-date-picker
- :disabled="displayDetail"
- v-model="starTime"
- type="date"
- value-format="YYYY-MM-DD"
- placeholder="选择日期"
- popper-class="date-select"
- >
- </el-date-picker>
- </div>
- </div>
- <div class="station">
- 结束日期
- <div class="search-input">
- <el-date-picker
- :disabled="displayDetail"
- v-model="endTime"
- type="date"
- value-format="YYYY-MM-DD"
- placeholder="选择日期"
- popper-class="date-select"
- >
- </el-date-picker>
- </div>
- </div>
- <div class="but">
- <el-button
- round
- size="mini"
- class="buttons"
- :disabled="displayDetail"
- @click="gerCndb"
- >搜 索</el-button
- >
- <el-button
- round
- size="mini"
- class="buttons"
- @click="dbfx"
- :disabled="
- chooseList.length <= 5 && chooseList.length > 1 ? false : true
- "
- >对标分析</el-button
- >
- <el-button
- round
- size="mini"
- class="buttons"
- @click="goBack"
- v-if="displayDetail"
- >返回</el-button
- >
- <el-button round size="mini" class="buttons" @click="funthb"
- >同环比</el-button
- >
- </div>
- </div>
- <div class="bodys" v-if="!displayDetail">
- <div class="line">
- <div class="leftContent"><span>场内对标</span></div>
- </div>
- <div class="economicTable">
- <el-table
- :data="tableData"
- ref="multipleTable"
- size="mini"
- height="calc(100% - 40px)"
- :cell-style="{ padding: '4px' }"
- :row-style="{ height: '0' }"
- stripe
- @selection-change="handleCurrentChange"
- >
- <el-table-column type="selection" width="58" align="center">
- </el-table-column>
- <el-table-column
- align="center"
- show-overflow-tooltip
- prop="date"
- label="日期"
- sortable
- >
- <template v-slot="scope">
- <span
- @click="goDetail(scope.row)"
- style="cursor: pointer; color: #05bb4c"
- >{{ scope.row.date }}</span
- >
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- v-for="item in tabIndex == -1 ? tableHeader : tableHeaderG"
- :key="item.code"
- :prop="item.code"
- :label="item.name"
- :width="item.name.length == 4 ? 55 : 69"
- show-overflow-tooltip
- sortable
- >
- </el-table-column>
- </el-table>
- <div class="pagination-class">
- <el-pagination
- @current-change="handlePageChange"
- :current-page="page.currentPage"
- :page-size="page.pagesize"
- layout="total, prev, pager, next, jumper"
- :total="page.total"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- <div class="echarts" v-if="!displayDetail">
- <div class="pie-echarts">
- <div class="chart-name">
- <div class="point point-left bottom"></div>
- <div class="point point-right bottom"></div>
- 损失电量分析
- </div>
- <PieChart
- :lossPower="lossPower"
- width="100%"
- height="calc(100% - 39px)"
- :showLable="false"
- ></PieChart>
- </div>
- <div class="bar-echarts">
- <div class="chart-name">
- <div class="point point-left bottom"></div>
- <div class="point point-right bottom"></div>
- 五项损失
- </div>
- <BarCharts
- :list="barList"
- width="100%"
- height="calc(100% - 39px)"
- :showLegend="true"
- :xdate="false"
- :colorIndex="true"
- ></BarCharts>
- </div>
- </div>
- <div
- v-if="displayDetail"
- style="height: calc(100% - 43px - 35px); padding-bottom: 10px"
- >
- <el-table
- :data="detailTable"
- ref="multipleTable"
- size="mini"
- height="100%"
- :cell-style="{ padding: '0px' }"
- :row-style="{ height: '0' }"
- stripe
- @selection-change="handleCurrentChange"
- >
- <el-table-column type="selection" width="55" align="center">
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- prop="name"
- label="风机名称"
- sortable
- >
- </el-table-column>
- <el-table-column
- v-for="item in tabIndex == -1
- ? tableHeaderDetail
- : tableHeaderGDetail"
- :key="item.code"
- :prop="item.code"
- :label="item.name"
- align="center"
- :width="item.name.length == 4 ? 57 : 88"
- show-overflow-tooltip
- sortable
- >
- </el-table-column>
- </el-table>
- <div class="pagination-class">
- <el-pagination
- @current-change="handlePageDChange"
- :current-page="pageD.currentPage"
- :page-size="pageD.pagesize"
- @size-change="handleSizeDChange"
- :page-sizes="[23, 50, 100, 500]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="pageD.total"
- >
- </el-pagination>
- </div>
- </div>
- <el-dialog
- class="dialogs"
- width="90%"
- top="40px"
- v-model="dialogVisible"
- :show-close="true"
- >
- <template #title>
- <div class="dialog-title">
- <div class="title">对标排名分析</div>
- </div>
- </template>
- <div class="dialog-body">
- <img class="dialog-img" src="@assets/imgs/dialog.png" />
- <dayinfo
- :radarValue="radarValue"
- :title="[windNum, windNum2]"
- :windNum="windNum"
- :windNum2="windNum2"
- :windNum3="windNum3"
- :windNum4="windNum4"
- :windNum5="windNum5"
- :tabs="tabs"
- :analyisDialog="analyisDialog"
- />
- </div>
- </el-dialog>
- <el-dialog
- class="dialogs"
- width="94%"
- top="120px"
- v-model="thbVisible"
- :show-close="true"
- >
- <template #title>
- <div class="dialog-title">
- <div class="title">同环比分析</div>
- </div>
- </template>
- <div class="dialog-body">
- <img class="dialog-img" src="@assets/imgs/dialog.png" />
- <div class="economicTable" style="height: 300px">
- <el-table
- :data="thbData"
- ref="multipleTable1"
- size="mini"
- height="100%"
- :cell-style="{ padding: '4px' }"
- :row-style="{ height: '0' }"
- stripe
- >
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="zhpm"
- label="综合排名"
- minWidth="80"
- sortable
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="name"
- label="类型"
- sortable
- minWidth="100"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="fdlpm"
- label="发电量排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="fdl"
- label="发电量"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="gzssdlpm"
- label="故障损失排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="gzssdl"
- label="故障损失"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="jxssdlpm"
- label="检修损失排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="jxssdl"
- label="检修损失"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="xnssdlpm"
- label="性能损失排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="xnssdl"
- label="性能损失"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="xdssdlpm"
- label="限电损失排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="xdssdl"
- label="限电损失"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="slssdlpm"
- label="受累损失排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="slssdl"
- label="受累损失"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="fnlylpm"
- :label="(tabIndex === -1 ? '风能' : '光能') + '利用率排名'"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="fnlyl"
- :label="(tabIndex === -1 ? '风能' : '光能') + '利用率(%)'"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="gzsslpm"
- label="故障损失率排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="gzssl"
- label="故障损失率(%)"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="jxsslpm"
- label="检修损失率排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="jxssl"
- label="检修损失率(%)"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="qflpm"
- :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率排名'"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="qfl"
- :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率(%)'"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="xnsslpm"
- label="性能损失率排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="xnssl"
- label="性能损失率(%)"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="slsslpm"
- label="受累损失率排名"
- sortable
- minWidth="65"
- >
- </el-table-column>
- <el-table-column
- show-overflow-tooltip
- align="center"
- label-class-name="s-tb-th"
- prop="slssl"
- label="受累损失率(%)"
- sortable
- minWidth="65"
- >
- </el-table-column>
- </el-table>
- </div>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import dayjs from "dayjs";
- import {
- tableHeader,
- tableHeaderG,
- tableHeaderDetail,
- tableHeaderGDetail,
- } from "@/utills//constant.js";
- import { companys } from "@/api/curveAnalyse";
- import { getStation, cndb, thb, details } from "@/api/performance";
- import PieChart from "../../homePage/components/pieChart.vue";
- import BarCharts from "../../homePage/components/barCharts.vue";
- import dayinfo from "../compontent/dayinfo.vue";
- export default {
- name: "siteBenchmarking", //场内对标
- components: {
- PieChart,
- BarCharts,
- dayinfo,
- },
- data() {
- return {
- tableHeader,
- tableHeaderG,
- tableHeaderDetail,
- tableHeaderGDetail,
- page: {
- pagesize: 11,
- currentPage: 1,
- total: 0,
- },
- pageD: {
- pagesize: 23,
- currentPage: 1,
- total: 0,
- },
- company: "",
- companyOptions: [],
- stationObj: "",
- stationList: [],
- starTime: "",
- endTime: "",
- tabIndex: -1,
- tabOptions: [
- { id: -1, name: "风电" },
- { id: -2, name: "光伏" },
- ],
- tableData: [],
- detailTable: [],
- chooseList: [],
- lossPower: [],
- barList: [],
- displayDetail: false,
- dialogVisible: false,
- radarValue: [],
- windNum: "",
- windNum2: "",
- windNum3: "",
- windNum4: "",
- windNum5: "",
- tabs: [],
- analyisDialog: [],
- //同环比
- thbVisible: false,
- thbData: [],
- };
- },
- created() {
- // let date = new Date();
- // date.setDate(1);
- // let month = parseInt(date.getMonth() + 1);
- // let day = date.getDate();
- // if (month < 10) {
- // month = '0' + month;
- // }
- // if (day < 10) {
- // day = '0' + day;
- // }
- // this.starTime = date.getFullYear() + '-' + month + '-' + day;
- this.starTime = dayjs(new Date().getTime() - 60000 * 60 * 24 * 7).format(
- "YYYY-MM-DD"
- );
- this.endTime = dayjs(new Date().getTime()).format("YYYY-MM-DD");
- this.initialization();
- },
- methods: {
- handlePageChange(val) {
- this.page.currentPage = val;
- this.gerCndb();
- },
- handlePageDChange(val) {
- this.pageD.currentPage = val;
- this.goDetail();
- },
- handleSizeDChange(val) {
- this.pageD.currentPage = 1;
- this.pageD.pagesize = val;
- this.goDetail();
- },
- funthb() {
- thb({
- companys: this.company,
- type: this.tabIndex,
- // beginDate: this.starTime,
- // endDate: this.endTime,
- pageNum: 1,
- pageSize: 10,
- wpids: this.stationObj,
- }).then(({ data: res }) => {
- if (res.data) {
- this.thbData = res.data;
- this.thbVisible = true;
- }
- });
- },
- tabClick(val) {
- this.tabIndex = val;
- if (val == -2) {
- this.company = "SXJ_KGDL_GFFD_ZGS";
- } else {
- this.company = this.companyOptions[0].id;
- }
- this.getStation(this.company);
- this.gerCndb();
- // this.initialization();
- },
- initialization() {
- companys().then(({ data: res }) => {
- if (res.data) {
- this.company = res.data[0].id;
- this.companyOptions = res.data;
- this.getStation(res.data[0].id);
- }
- });
- },
- getStation(companyids) {
- getStation({
- companyids: companyids,
- type: this.tabIndex,
- }).then(({ data: res }) => {
- if (res.data.length) {
- this.stationList = res.data;
- this.stationObj = res.data[0].id;
- this.gerCndb();
- } else {
- this.stationList = [];
- this.stationObj = "";
- this.gerCndb();
- }
- });
- },
- gerCndb() {
- this.BASE.showLoading();
- cndb({
- companys: this.company,
- type: this.tabIndex,
- beginDate: this.starTime,
- endDate: this.endTime,
- wpids: this.stationObj,
- pageSize: this.page.pagesize,
- pageNum: this.page.currentPage,
- target: "",
- sort: "",
- }).then(({ data: res }) => {
- if (res.data && res.data.resultList && res.data.resultList.length) {
- let barList = [
- {
- name: "故障损失电量",
- children: [],
- date: [],
- },
- {
- name: "检修损失电量",
- children: [],
- },
- {
- name: "性能损失电量",
- children: [],
- },
- {
- name: "限电损失电量",
- children: [],
- },
- {
- name: "受累损失电量",
- children: [],
- },
- ];
- this.tableData = res.data.resultList;
- this.page.total = res.data.total;
- let lossPower = [];
- res.data.resultList.forEach((item) => {
- let obj = {
- name: item.date,
- value: item.zssdl,
- };
- lossPower.push(obj);
- barList[0].date.push(item.date);
- barList[0].children.push(item.gzssdl);
- barList[1].children.push(item.jxssdl);
- barList[2].children.push(item.xnssdl);
- barList[3].children.push(item.xdssdl);
- barList[4].children.push(item.slssdl);
- });
- this.lossPower = lossPower;
- this.barList = barList;
- this.BASE.closeLoading();
- } else {
- this.BASE.closeLoading();
- this.tableData = [];
- this.page.total = 0;
- this.lossPower = [];
- this.barList = [];
- }
- });
- },
- handleStationChange(val) {
- this.stationObj = val;
- this.gerCndb();
- },
- handleCompanyChange(val) {
- this.company = val;
- this.getStation(val);
- this.gerCndb();
- },
- handleCurrentChange(val) {
- if (val.length > 5) {
- let del_row = val.shift();
- this.$refs.multipleTable.toggleRowSelection(del_row, false);
- }
- let arr = [];
- val.forEach((item, index) => {
- if (index < 5) {
- arr.push(item);
- }
- });
- this.chooseList = arr;
- },
- goDetail(row) {
- this.displayDetail = true;
- details({
- id: this.stationObj,
- beginDate: this.starTime,
- endDate: this.endTime,
- pageSize: this.pageD.pagesize,
- pageNum: this.pageD.currentPage,
- target: "",
- sort: "",
- }).then(({ data: res }) => {
- if (res.data) {
- this.detailTable = res.data.resultList;
- this.pageD.total = res.data.total;
- }
- });
- },
- goBack() {
- this.displayDetail = false;
- },
- dbfx() {
- if (this.chooseList.length <= 5) {
- this.dialogVisible = true;
- this.AjaxDbfx();
- }
- },
- AjaxDbfx() {
- var data = this.chooseList;
- this.windNum = data[0]?.date || data[0]?.name;
- this.windNum2 = data[1]?.date || data[1]?.name;
- this.windNum3 = data[2]?.date || data[2]?.name;
- this.windNum4 = data[3]?.date || data[3]?.name;
- this.windNum5 = data[4]?.date || data[4]?.name;
- let tabs = [
- {
- name: "发电量",
- code: "fdl",
- },
- {
- name: "故障损失电量",
- code: "gzssdl",
- },
- {
- name: "检修损失电量",
- code: "jxssdl",
- },
- {
- name: "性能未达标损失电量",
- code: "xnssdl",
- },
- {
- name: "受累损失电量",
- code: "slssdl",
- },
- {
- name: "风能利用率",
- code: "fnlyl",
- },
- {
- name: "故障损失率",
- code: "gzssl",
- },
- {
- name: "检修损失率",
- code: "jxssl",
- },
- {
- name: "弃风率",
- code: "qfl",
- },
- {
- name: "性能损失率",
- code: "xnssl",
- },
- {
- name: "受累损失率",
- code: "slssl",
- },
- ];
- tabs = tabs.map((item) => {
- if (item.code == "fnlyl") {
- if (this.tabIndex == -1) {
- item.name = "风能利用率";
- } else {
- item.name = "光能利用率";
- }
- }
- if (item.code == "qfl") {
- if (this.tabIndex == -1) {
- item.name = "弃风率";
- } else {
- item.name = "弃光率";
- }
- }
- return item;
- });
- tabs.forEach((val) => {
- data.forEach((item, index) => {
- val["windData" + (index + 1)] = item[val.code];
- });
- });
- this.tabs = tabs;
- let radarValue = [];
- data.forEach((item, index) => {
- let data = {
- indicator: [
- "风能利用率排名",
- "故障损失率排名",
- "检修损失率排名",
- "弃风率排名",
- "性能损失率排名",
- "受累损失率排名",
- ],
- data: [
- {
- value: [
- item.fnlylpm,
- item.gzsslpm,
- item.jxsslpm,
- item.qflpm,
- item.xnsslpm,
- item.slsslpm,
- ],
- name: item.name,
- },
- ],
- };
- if (this.tabIndex == -1) {
- data.indicator = [
- "风能利用率排名",
- "故障损失率排名",
- "检修损失率排名",
- "弃风率排名",
- "性能损失率排名",
- "受累损失率排名",
- ];
- } else {
- data.indicator = [
- "光能利用率排名",
- "故障损失率排名",
- "检修损失率排名",
- "弃光率排名",
- "性能损失率排名",
- "受累损失率排名",
- ];
- }
- radarValue.push(data);
- });
- this.radarValue = radarValue;
- var analyis = [],
- gzssdl = [],
- jxssdl = [],
- xnssdl = [],
- xdssdl = [],
- slssdl = [];
- data.forEach((item, index) => {
- gzssdl.push({
- text: item.date || item.name,
- value: item.gzssdl,
- });
- jxssdl.push({
- text: item.date || item.name,
- value: item.jxssdl,
- });
- xnssdl.push({
- text: item.date || item.name,
- value: item.xnssdl,
- });
- xdssdl.push({
- text: item.date || item.name,
- value: item.xdssdl,
- });
- slssdl.push({
- text: item.date || item.name,
- value: item.slssdl,
- });
- });
- analyis.push(
- {
- title: "故障损失电量",
- yAxisIndex: 0,
- value: gzssdl,
- },
- {
- title: "检修损失电量",
- yAxisIndex: 0,
- value: jxssdl,
- },
- {
- title: "性能损失电量",
- yAxisIndex: 0,
- value: xnssdl,
- },
- {
- title: "限电损失电量",
- yAxisIndex: 0,
- value: xdssdl,
- },
- {
- title: "受累损失电量",
- yAxisIndex: 0,
- value: slssdl,
- }
- );
- this.analyisDialog = analyis;
- },
- },
- watch: {
- screenHeight(val) {
- this.screenHeight = val;
- if (val > 1100) {
- this.echartsHeight = "58vh";
- } else {
- this.echartsHeight = "55vh";
- }
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .pagination-class {
- text-align: right;
- margin-top: 5px;
- }
- .parcel-box {
- height: 100%;
- width: 100%;
- padding: 0 30px;
- padding-bottom: 10px;
- }
- /deep/ .s-tb-th {
- height: 50px;
- }
- .form-wrapper {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 10px;
- margin-bottom: 10px;
- .tabCut {
- display: inline-block;
- margin: 0 10px;
- div {
- display: inline-block;
- width: 60px;
- height: 27px;
- border: 1px solid #274934;
- text-align: center;
- line-height: 25px;
- cursor: pointer;
- }
- div:nth-child(1) {
- border-radius: 13px 0px 0px 13px;
- border-right-width: 0;
- }
- div:nth-child(2) {
- border-radius: 0px 13px 13px 0px;
- }
- .active {
- background-color: rgba(5, 187, 76, 0.9);
- color: #fff;
- }
- .disabled {
- cursor: not-allowed;
- pointer-events: none;
- }
- }
- .tabCut1 {
- display: inline-block;
- margin: 0 10px;
- div {
- display: inline-block;
- width: 60px;
- height: 27px;
- border: 1px solid #274934;
- text-align: center;
- line-height: 25px;
- cursor: pointer;
- }
- div:nth-child(1) {
- border-radius: 13px 0px 0px 13px;
- }
- div:nth-child(3) {
- border-radius: 0px 13px 13px 0px;
- }
- .active {
- background-color: rgba(5, 187, 76, 0.9);
- color: #fff;
- }
- }
- .station {
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #b3b3b3;
- margin-right: 10px;
- }
- .search-input {
- margin-left: 10px;
- }
- .but {
- display: flex;
- flex-direction: row;
- align-content: center;
- margin-left: 20px;
- }
- .buttons {
- 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;
- }
- }
- }
- .bodys {
- width: 100%;
- height: calc(100% - 350px - 43px - 20px);
- background-color: rgba(0, 0, 0, 0.45);
- // padding-bottom: 20px;
- border-radius: 5px;
- }
- .economicTable {
- width: 100%;
- height: calc(100% - 36px);
- }
- .line {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- .leftContent {
- width: 242px;
- height: 41px;
- display: flex;
- align-items: center;
- 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;
- }
- }
- .rightContent {
- width: 212px;
- height: 28px;
- margin-top: 13px;
- background: url("../../../../assets/imgs/title_right_bg.png");
- }
- }
- .echarts {
- width: 100%;
- height: 350px;
- display: flex;
- flex-direction: row;
- align-items: center;
- .chart-name {
- display: flex;
- align-items: center;
- padding-left: 20px;
- position: relative;
- height: 39px;
- width: 98%;
- margin-left: 1%;
- border-bottom: 1px solid rgba(153, 153, 153, 0.5);
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #ffffff;
- }
- .pie-echarts {
- width: 30%;
- height: 100%;
- background: rgba(0, 0, 0, 0.45);
- border-radius: 5px;
- }
- .bar-echarts {
- width: 69%;
- margin-left: 1%;
- height: 100%;
- background: rgba(0, 0, 0, 0.45);
- border-radius: 5px;
- }
- }
- .point {
- width: 6px;
- height: 1px;
- background-color: #ffffff;
- position: absolute;
- &.point-left {
- left: 0;
- }
- &.point-right {
- right: 0;
- }
- &.top {
- top: -1px;
- }
- &.bottom {
- bottom: -1px;
- }
- }
- /*去除表头全选框*/
- ::v-deep .el-table__header-wrapper .el-checkbox {
- display: none;
- }
- ::v-deep .el-table__body-wrapper .el-checkbox {
- .el-checkbox__input {
- display: block;
- }
- }
- </style>
|