index.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254
  1. <template>
  2. <div class="parcel-box">
  3. <div class="form-wrapper">
  4. <el-select
  5. size="mini"
  6. :disabled="displayDetail"
  7. v-model="company"
  8. placeholder="请选择"
  9. @change="handleCompanyChange(company)"
  10. >
  11. <el-option
  12. v-for="item in companyOptions"
  13. :key="item.id"
  14. :label="item.aname"
  15. :value="item.id"
  16. >
  17. </el-option>
  18. </el-select>
  19. <div class="tabCut">
  20. <div
  21. @click="tabClick(val.id)"
  22. :class="[
  23. tabIndex === val.id ? 'active' : '',
  24. displayDetail ? 'disabled' : '',
  25. ]"
  26. v-for="val in tabOptions"
  27. :key="val.id"
  28. >
  29. <span>{{ val.name }}</span>
  30. </div>
  31. </div>
  32. <div class="station">
  33. 场站:
  34. <el-select
  35. size="mini"
  36. :disabled="displayDetail"
  37. v-model="stationObj"
  38. placeholder="请选择"
  39. @change="handleStationChange(stationObj)"
  40. clearable
  41. >
  42. <el-option
  43. v-for="item in stationList"
  44. :key="item.id"
  45. :label="item.name"
  46. :value="item.id"
  47. >
  48. </el-option>
  49. </el-select>
  50. </div>
  51. <div class="station">
  52. 开始日期
  53. <div class="search-input">
  54. <el-date-picker
  55. :disabled="displayDetail"
  56. v-model="starTime"
  57. type="date"
  58. value-format="YYYY-MM-DD"
  59. placeholder="选择日期"
  60. popper-class="date-select"
  61. >
  62. </el-date-picker>
  63. </div>
  64. </div>
  65. <div class="station">
  66. 结束日期
  67. <div class="search-input">
  68. <el-date-picker
  69. :disabled="displayDetail"
  70. v-model="endTime"
  71. type="date"
  72. value-format="YYYY-MM-DD"
  73. placeholder="选择日期"
  74. popper-class="date-select"
  75. >
  76. </el-date-picker>
  77. </div>
  78. </div>
  79. <div class="but">
  80. <el-button
  81. round
  82. size="mini"
  83. class="buttons"
  84. :disabled="displayDetail"
  85. @click="gerCndb"
  86. >搜 索</el-button
  87. >
  88. <el-button
  89. round
  90. size="mini"
  91. class="buttons"
  92. @click="dbfx"
  93. :disabled="
  94. chooseList.length <= 5 && chooseList.length > 1 ? false : true
  95. "
  96. >对标分析</el-button
  97. >
  98. <el-button
  99. round
  100. size="mini"
  101. class="buttons"
  102. @click="goBack"
  103. v-if="displayDetail"
  104. >返回</el-button
  105. >
  106. <el-button round size="mini" class="buttons" @click="funthb"
  107. >同环比</el-button
  108. >
  109. </div>
  110. </div>
  111. <div class="bodys" v-if="!displayDetail">
  112. <div class="line">
  113. <div class="leftContent"><span>场内对标</span></div>
  114. </div>
  115. <div class="economicTable">
  116. <el-table
  117. :data="tableData"
  118. ref="multipleTable"
  119. size="mini"
  120. height="calc(100% - 40px)"
  121. :cell-style="{ padding: '4px' }"
  122. :row-style="{ height: '0' }"
  123. stripe
  124. @selection-change="handleCurrentChange"
  125. >
  126. <el-table-column type="selection" width="58" align="center">
  127. </el-table-column>
  128. <el-table-column
  129. align="center"
  130. show-overflow-tooltip
  131. prop="date"
  132. label="日期"
  133. sortable
  134. >
  135. <template v-slot="scope">
  136. <span
  137. @click="goDetail(scope.row)"
  138. style="cursor: pointer; color: #05bb4c"
  139. >{{ scope.row.date }}</span
  140. >
  141. </template>
  142. </el-table-column>
  143. <el-table-column
  144. align="center"
  145. v-for="item in tabIndex == -1 ? tableHeader : tableHeaderG"
  146. :key="item.code"
  147. :prop="item.code"
  148. :label="item.name"
  149. :width="item.name.length == 4 ? 55 : 69"
  150. show-overflow-tooltip
  151. sortable
  152. >
  153. </el-table-column>
  154. </el-table>
  155. <div class="pagination-class">
  156. <el-pagination
  157. @current-change="handlePageChange"
  158. :current-page="page.currentPage"
  159. :page-size="page.pagesize"
  160. layout="total, prev, pager, next, jumper"
  161. :total="page.total"
  162. >
  163. </el-pagination>
  164. </div>
  165. </div>
  166. </div>
  167. <div class="echarts" v-if="!displayDetail">
  168. <div class="pie-echarts">
  169. <div class="chart-name">
  170. <div class="point point-left bottom"></div>
  171. <div class="point point-right bottom"></div>
  172. 损失电量分析
  173. </div>
  174. <PieChart
  175. :lossPower="lossPower"
  176. width="100%"
  177. height="calc(100% - 39px)"
  178. :showLable="false"
  179. ></PieChart>
  180. </div>
  181. <div class="bar-echarts">
  182. <div class="chart-name">
  183. <div class="point point-left bottom"></div>
  184. <div class="point point-right bottom"></div>
  185. 五项损失
  186. </div>
  187. <BarCharts
  188. :list="barList"
  189. width="100%"
  190. height="calc(100% - 39px)"
  191. :showLegend="true"
  192. :xdate="false"
  193. :colorIndex="true"
  194. ></BarCharts>
  195. </div>
  196. </div>
  197. <div
  198. v-if="displayDetail"
  199. style="height: calc(100% - 43px - 35px); padding-bottom: 10px"
  200. >
  201. <el-table
  202. :data="detailTable"
  203. ref="multipleTable"
  204. size="mini"
  205. height="100%"
  206. :cell-style="{ padding: '0px' }"
  207. :row-style="{ height: '0' }"
  208. stripe
  209. @selection-change="handleCurrentChange"
  210. >
  211. <el-table-column type="selection" width="55" align="center">
  212. </el-table-column>
  213. <el-table-column
  214. show-overflow-tooltip
  215. align="center"
  216. prop="name"
  217. label="风机名称"
  218. sortable
  219. >
  220. </el-table-column>
  221. <el-table-column
  222. v-for="item in tabIndex == -1
  223. ? tableHeaderDetail
  224. : tableHeaderGDetail"
  225. :key="item.code"
  226. :prop="item.code"
  227. :label="item.name"
  228. align="center"
  229. :width="item.name.length == 4 ? 57 : 88"
  230. show-overflow-tooltip
  231. sortable
  232. >
  233. </el-table-column>
  234. </el-table>
  235. <div class="pagination-class">
  236. <el-pagination
  237. @current-change="handlePageDChange"
  238. :current-page="pageD.currentPage"
  239. :page-size="pageD.pagesize"
  240. @size-change="handleSizeDChange"
  241. :page-sizes="[23, 50, 100, 500]"
  242. layout="total, sizes, prev, pager, next, jumper"
  243. :total="pageD.total"
  244. >
  245. </el-pagination>
  246. </div>
  247. </div>
  248. <el-dialog
  249. class="dialogs"
  250. width="90%"
  251. top="40px"
  252. v-model="dialogVisible"
  253. :show-close="true"
  254. >
  255. <template #title>
  256. <div class="dialog-title">
  257. <div class="title">对标排名分析</div>
  258. </div>
  259. </template>
  260. <div class="dialog-body">
  261. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  262. <dayinfo
  263. :radarValue="radarValue"
  264. :title="[windNum, windNum2]"
  265. :windNum="windNum"
  266. :windNum2="windNum2"
  267. :windNum3="windNum3"
  268. :windNum4="windNum4"
  269. :windNum5="windNum5"
  270. :tabs="tabs"
  271. :analyisDialog="analyisDialog"
  272. />
  273. </div>
  274. </el-dialog>
  275. <el-dialog
  276. class="dialogs"
  277. width="94%"
  278. top="120px"
  279. v-model="thbVisible"
  280. :show-close="true"
  281. >
  282. <template #title>
  283. <div class="dialog-title">
  284. <div class="title">同环比分析</div>
  285. </div>
  286. </template>
  287. <div class="dialog-body">
  288. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  289. <div class="economicTable" style="height: 300px">
  290. <el-table
  291. :data="thbData"
  292. ref="multipleTable1"
  293. size="mini"
  294. height="100%"
  295. :cell-style="{ padding: '4px' }"
  296. :row-style="{ height: '0' }"
  297. stripe
  298. >
  299. <el-table-column
  300. show-overflow-tooltip
  301. align="center"
  302. label-class-name="s-tb-th"
  303. prop="zhpm"
  304. label="综合排名"
  305. minWidth="80"
  306. sortable
  307. >
  308. </el-table-column>
  309. <el-table-column
  310. show-overflow-tooltip
  311. align="center"
  312. label-class-name="s-tb-th"
  313. prop="name"
  314. label="类型"
  315. sortable
  316. minWidth="100"
  317. >
  318. </el-table-column>
  319. <el-table-column
  320. show-overflow-tooltip
  321. align="center"
  322. label-class-name="s-tb-th"
  323. prop="fdlpm"
  324. label="发电量排名"
  325. sortable
  326. minWidth="65"
  327. >
  328. </el-table-column>
  329. <el-table-column
  330. show-overflow-tooltip
  331. align="center"
  332. label-class-name="s-tb-th"
  333. prop="fdl"
  334. label="发电量"
  335. sortable
  336. minWidth="65"
  337. >
  338. </el-table-column>
  339. <el-table-column
  340. show-overflow-tooltip
  341. align="center"
  342. label-class-name="s-tb-th"
  343. prop="gzssdlpm"
  344. label="故障损失排名"
  345. sortable
  346. minWidth="65"
  347. >
  348. </el-table-column>
  349. <el-table-column
  350. show-overflow-tooltip
  351. align="center"
  352. label-class-name="s-tb-th"
  353. prop="gzssdl"
  354. label="故障损失"
  355. sortable
  356. minWidth="65"
  357. >
  358. </el-table-column>
  359. <el-table-column
  360. show-overflow-tooltip
  361. align="center"
  362. label-class-name="s-tb-th"
  363. prop="jxssdlpm"
  364. label="检修损失排名"
  365. sortable
  366. minWidth="65"
  367. >
  368. </el-table-column>
  369. <el-table-column
  370. show-overflow-tooltip
  371. align="center"
  372. label-class-name="s-tb-th"
  373. prop="jxssdl"
  374. label="检修损失"
  375. sortable
  376. minWidth="65"
  377. >
  378. </el-table-column>
  379. <el-table-column
  380. show-overflow-tooltip
  381. align="center"
  382. label-class-name="s-tb-th"
  383. prop="xnssdlpm"
  384. label="性能损失排名"
  385. sortable
  386. minWidth="65"
  387. >
  388. </el-table-column>
  389. <el-table-column
  390. show-overflow-tooltip
  391. align="center"
  392. label-class-name="s-tb-th"
  393. prop="xnssdl"
  394. label="性能损失"
  395. sortable
  396. minWidth="65"
  397. >
  398. </el-table-column>
  399. <el-table-column
  400. show-overflow-tooltip
  401. align="center"
  402. label-class-name="s-tb-th"
  403. prop="xdssdlpm"
  404. label="限电损失排名"
  405. sortable
  406. minWidth="65"
  407. >
  408. </el-table-column>
  409. <el-table-column
  410. show-overflow-tooltip
  411. align="center"
  412. label-class-name="s-tb-th"
  413. prop="xdssdl"
  414. label="限电损失"
  415. sortable
  416. minWidth="65"
  417. >
  418. </el-table-column>
  419. <el-table-column
  420. show-overflow-tooltip
  421. align="center"
  422. label-class-name="s-tb-th"
  423. prop="slssdlpm"
  424. label="受累损失排名"
  425. sortable
  426. minWidth="65"
  427. >
  428. </el-table-column>
  429. <el-table-column
  430. show-overflow-tooltip
  431. align="center"
  432. label-class-name="s-tb-th"
  433. prop="slssdl"
  434. label="受累损失"
  435. sortable
  436. minWidth="65"
  437. >
  438. </el-table-column>
  439. <el-table-column
  440. show-overflow-tooltip
  441. align="center"
  442. label-class-name="s-tb-th"
  443. prop="fnlylpm"
  444. :label="(tabIndex === -1 ? '风能' : '光能') + '利用率排名'"
  445. sortable
  446. minWidth="65"
  447. >
  448. </el-table-column>
  449. <el-table-column
  450. show-overflow-tooltip
  451. align="center"
  452. label-class-name="s-tb-th"
  453. prop="fnlyl"
  454. :label="(tabIndex === -1 ? '风能' : '光能') + '利用率(%)'"
  455. sortable
  456. minWidth="65"
  457. >
  458. </el-table-column>
  459. <el-table-column
  460. show-overflow-tooltip
  461. align="center"
  462. label-class-name="s-tb-th"
  463. prop="gzsslpm"
  464. label="故障损失率排名"
  465. sortable
  466. minWidth="65"
  467. >
  468. </el-table-column>
  469. <el-table-column
  470. show-overflow-tooltip
  471. align="center"
  472. label-class-name="s-tb-th"
  473. prop="gzssl"
  474. label="故障损失率(%)"
  475. sortable
  476. minWidth="65"
  477. >
  478. </el-table-column>
  479. <el-table-column
  480. show-overflow-tooltip
  481. align="center"
  482. label-class-name="s-tb-th"
  483. prop="jxsslpm"
  484. label="检修损失率排名"
  485. sortable
  486. minWidth="65"
  487. >
  488. </el-table-column>
  489. <el-table-column
  490. show-overflow-tooltip
  491. align="center"
  492. label-class-name="s-tb-th"
  493. prop="jxssl"
  494. label="检修损失率(%)"
  495. sortable
  496. minWidth="65"
  497. >
  498. </el-table-column>
  499. <el-table-column
  500. show-overflow-tooltip
  501. align="center"
  502. label-class-name="s-tb-th"
  503. prop="qflpm"
  504. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率排名'"
  505. sortable
  506. minWidth="65"
  507. >
  508. </el-table-column>
  509. <el-table-column
  510. show-overflow-tooltip
  511. align="center"
  512. label-class-name="s-tb-th"
  513. prop="qfl"
  514. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率(%)'"
  515. sortable
  516. minWidth="65"
  517. >
  518. </el-table-column>
  519. <el-table-column
  520. show-overflow-tooltip
  521. align="center"
  522. label-class-name="s-tb-th"
  523. prop="xnsslpm"
  524. label="性能损失率排名"
  525. sortable
  526. minWidth="65"
  527. >
  528. </el-table-column>
  529. <el-table-column
  530. show-overflow-tooltip
  531. align="center"
  532. label-class-name="s-tb-th"
  533. prop="xnssl"
  534. label="性能损失率(%)"
  535. sortable
  536. minWidth="65"
  537. >
  538. </el-table-column>
  539. <el-table-column
  540. show-overflow-tooltip
  541. align="center"
  542. label-class-name="s-tb-th"
  543. prop="slsslpm"
  544. label="受累损失率排名"
  545. sortable
  546. minWidth="65"
  547. >
  548. </el-table-column>
  549. <el-table-column
  550. show-overflow-tooltip
  551. align="center"
  552. label-class-name="s-tb-th"
  553. prop="slssl"
  554. label="受累损失率(%)"
  555. sortable
  556. minWidth="65"
  557. >
  558. </el-table-column>
  559. </el-table>
  560. </div>
  561. </div>
  562. </el-dialog>
  563. </div>
  564. </template>
  565. <script>
  566. import dayjs from "dayjs";
  567. import {
  568. tableHeader,
  569. tableHeaderG,
  570. tableHeaderDetail,
  571. tableHeaderGDetail,
  572. } from "@/utills//constant.js";
  573. import { companys } from "@/api/curveAnalyse";
  574. import { getStation, cndb, thb, details } from "@/api/performance";
  575. import PieChart from "../../homePage/components/pieChart.vue";
  576. import BarCharts from "../../homePage/components/barCharts.vue";
  577. import dayinfo from "../compontent/dayinfo.vue";
  578. export default {
  579. name: "siteBenchmarking", //场内对标
  580. components: {
  581. PieChart,
  582. BarCharts,
  583. dayinfo,
  584. },
  585. data() {
  586. return {
  587. tableHeader,
  588. tableHeaderG,
  589. tableHeaderDetail,
  590. tableHeaderGDetail,
  591. page: {
  592. pagesize: 11,
  593. currentPage: 1,
  594. total: 0,
  595. },
  596. pageD: {
  597. pagesize: 23,
  598. currentPage: 1,
  599. total: 0,
  600. },
  601. company: "",
  602. companyOptions: [],
  603. stationObj: "",
  604. stationList: [],
  605. starTime: "",
  606. endTime: "",
  607. tabIndex: -1,
  608. tabOptions: [
  609. { id: -1, name: "风电" },
  610. { id: -2, name: "光伏" },
  611. ],
  612. tableData: [],
  613. detailTable: [],
  614. chooseList: [],
  615. lossPower: [],
  616. barList: [],
  617. displayDetail: false,
  618. dialogVisible: false,
  619. radarValue: [],
  620. windNum: "",
  621. windNum2: "",
  622. windNum3: "",
  623. windNum4: "",
  624. windNum5: "",
  625. tabs: [],
  626. analyisDialog: [],
  627. //同环比
  628. thbVisible: false,
  629. thbData: [],
  630. };
  631. },
  632. created() {
  633. // let date = new Date();
  634. // date.setDate(1);
  635. // let month = parseInt(date.getMonth() + 1);
  636. // let day = date.getDate();
  637. // if (month < 10) {
  638. // month = '0' + month;
  639. // }
  640. // if (day < 10) {
  641. // day = '0' + day;
  642. // }
  643. // this.starTime = date.getFullYear() + '-' + month + '-' + day;
  644. this.starTime = dayjs(new Date().getTime() - 60000 * 60 * 24 * 7).format(
  645. "YYYY-MM-DD"
  646. );
  647. this.endTime = dayjs(new Date().getTime()).format("YYYY-MM-DD");
  648. this.initialization();
  649. },
  650. methods: {
  651. handlePageChange(val) {
  652. this.page.currentPage = val;
  653. this.gerCndb();
  654. },
  655. handlePageDChange(val) {
  656. this.pageD.currentPage = val;
  657. this.goDetail();
  658. },
  659. handleSizeDChange(val) {
  660. this.pageD.currentPage = 1;
  661. this.pageD.pagesize = val;
  662. this.goDetail();
  663. },
  664. funthb() {
  665. thb({
  666. companys: this.company,
  667. type: this.tabIndex,
  668. // beginDate: this.starTime,
  669. // endDate: this.endTime,
  670. pageNum: 1,
  671. pageSize: 10,
  672. wpids: this.stationObj,
  673. }).then(({ data: res }) => {
  674. if (res.data) {
  675. this.thbData = res.data;
  676. this.thbVisible = true;
  677. }
  678. });
  679. },
  680. tabClick(val) {
  681. this.tabIndex = val;
  682. if (val == -2) {
  683. this.company = "SXJ_KGDL_GFFD_ZGS";
  684. } else {
  685. this.company = this.companyOptions[0].id;
  686. }
  687. this.getStation(this.company);
  688. this.gerCndb();
  689. // this.initialization();
  690. },
  691. initialization() {
  692. companys().then(({ data: res }) => {
  693. if (res.data) {
  694. this.company = res.data[0].id;
  695. this.companyOptions = res.data;
  696. this.getStation(res.data[0].id);
  697. }
  698. });
  699. },
  700. getStation(companyids) {
  701. getStation({
  702. companyids: companyids,
  703. type: this.tabIndex,
  704. }).then(({ data: res }) => {
  705. if (res.data.length) {
  706. this.stationList = res.data;
  707. this.stationObj = res.data[0].id;
  708. this.gerCndb();
  709. } else {
  710. this.stationList = [];
  711. this.stationObj = "";
  712. this.gerCndb();
  713. }
  714. });
  715. },
  716. gerCndb() {
  717. this.BASE.showLoading();
  718. cndb({
  719. companys: this.company,
  720. type: this.tabIndex,
  721. beginDate: this.starTime,
  722. endDate: this.endTime,
  723. wpids: this.stationObj,
  724. pageSize: this.page.pagesize,
  725. pageNum: this.page.currentPage,
  726. target: "",
  727. sort: "",
  728. }).then(({ data: res }) => {
  729. if (res.data && res.data.resultList && res.data.resultList.length) {
  730. let barList = [
  731. {
  732. name: "故障损失电量",
  733. children: [],
  734. date: [],
  735. },
  736. {
  737. name: "检修损失电量",
  738. children: [],
  739. },
  740. {
  741. name: "性能损失电量",
  742. children: [],
  743. },
  744. {
  745. name: "限电损失电量",
  746. children: [],
  747. },
  748. {
  749. name: "受累损失电量",
  750. children: [],
  751. },
  752. ];
  753. this.tableData = res.data.resultList;
  754. this.page.total = res.data.total;
  755. let lossPower = [];
  756. res.data.resultList.forEach((item) => {
  757. let obj = {
  758. name: item.date,
  759. value: item.zssdl,
  760. };
  761. lossPower.push(obj);
  762. barList[0].date.push(item.date);
  763. barList[0].children.push(item.gzssdl);
  764. barList[1].children.push(item.jxssdl);
  765. barList[2].children.push(item.xnssdl);
  766. barList[3].children.push(item.xdssdl);
  767. barList[4].children.push(item.slssdl);
  768. });
  769. this.lossPower = lossPower;
  770. this.barList = barList;
  771. this.BASE.closeLoading();
  772. } else {
  773. this.BASE.closeLoading();
  774. this.tableData = [];
  775. this.page.total = 0;
  776. this.lossPower = [];
  777. this.barList = [];
  778. }
  779. });
  780. },
  781. handleStationChange(val) {
  782. this.stationObj = val;
  783. this.gerCndb();
  784. },
  785. handleCompanyChange(val) {
  786. this.company = val;
  787. this.getStation(val);
  788. this.gerCndb();
  789. },
  790. handleCurrentChange(val) {
  791. if (val.length > 5) {
  792. let del_row = val.shift();
  793. this.$refs.multipleTable.toggleRowSelection(del_row, false);
  794. }
  795. let arr = [];
  796. val.forEach((item, index) => {
  797. if (index < 5) {
  798. arr.push(item);
  799. }
  800. });
  801. this.chooseList = arr;
  802. },
  803. goDetail(row) {
  804. this.displayDetail = true;
  805. details({
  806. id: this.stationObj,
  807. beginDate: this.starTime,
  808. endDate: this.endTime,
  809. pageSize: this.pageD.pagesize,
  810. pageNum: this.pageD.currentPage,
  811. target: "",
  812. sort: "",
  813. }).then(({ data: res }) => {
  814. if (res.data) {
  815. this.detailTable = res.data.resultList;
  816. this.pageD.total = res.data.total;
  817. }
  818. });
  819. },
  820. goBack() {
  821. this.displayDetail = false;
  822. },
  823. dbfx() {
  824. if (this.chooseList.length <= 5) {
  825. this.dialogVisible = true;
  826. this.AjaxDbfx();
  827. }
  828. },
  829. AjaxDbfx() {
  830. var data = this.chooseList;
  831. this.windNum = data[0]?.date || data[0]?.name;
  832. this.windNum2 = data[1]?.date || data[1]?.name;
  833. this.windNum3 = data[2]?.date || data[2]?.name;
  834. this.windNum4 = data[3]?.date || data[3]?.name;
  835. this.windNum5 = data[4]?.date || data[4]?.name;
  836. let tabs = [
  837. {
  838. name: "发电量",
  839. code: "fdl",
  840. },
  841. {
  842. name: "故障损失电量",
  843. code: "gzssdl",
  844. },
  845. {
  846. name: "检修损失电量",
  847. code: "jxssdl",
  848. },
  849. {
  850. name: "性能未达标损失电量",
  851. code: "xnssdl",
  852. },
  853. {
  854. name: "受累损失电量",
  855. code: "slssdl",
  856. },
  857. {
  858. name: "风能利用率",
  859. code: "fnlyl",
  860. },
  861. {
  862. name: "故障损失率",
  863. code: "gzssl",
  864. },
  865. {
  866. name: "检修损失率",
  867. code: "jxssl",
  868. },
  869. {
  870. name: "弃风率",
  871. code: "qfl",
  872. },
  873. {
  874. name: "性能损失率",
  875. code: "xnssl",
  876. },
  877. {
  878. name: "受累损失率",
  879. code: "slssl",
  880. },
  881. ];
  882. tabs = tabs.map((item) => {
  883. if (item.code == "fnlyl") {
  884. if (this.tabIndex == -1) {
  885. item.name = "风能利用率";
  886. } else {
  887. item.name = "光能利用率";
  888. }
  889. }
  890. if (item.code == "qfl") {
  891. if (this.tabIndex == -1) {
  892. item.name = "弃风率";
  893. } else {
  894. item.name = "弃光率";
  895. }
  896. }
  897. return item;
  898. });
  899. tabs.forEach((val) => {
  900. data.forEach((item, index) => {
  901. val["windData" + (index + 1)] = item[val.code];
  902. });
  903. });
  904. this.tabs = tabs;
  905. let radarValue = [];
  906. data.forEach((item, index) => {
  907. let data = {
  908. indicator: [
  909. "风能利用率排名",
  910. "故障损失率排名",
  911. "检修损失率排名",
  912. "弃风率排名",
  913. "性能损失率排名",
  914. "受累损失率排名",
  915. ],
  916. data: [
  917. {
  918. value: [
  919. item.fnlylpm,
  920. item.gzsslpm,
  921. item.jxsslpm,
  922. item.qflpm,
  923. item.xnsslpm,
  924. item.slsslpm,
  925. ],
  926. name: item.name,
  927. },
  928. ],
  929. };
  930. if (this.tabIndex == -1) {
  931. data.indicator = [
  932. "风能利用率排名",
  933. "故障损失率排名",
  934. "检修损失率排名",
  935. "弃风率排名",
  936. "性能损失率排名",
  937. "受累损失率排名",
  938. ];
  939. } else {
  940. data.indicator = [
  941. "光能利用率排名",
  942. "故障损失率排名",
  943. "检修损失率排名",
  944. "弃光率排名",
  945. "性能损失率排名",
  946. "受累损失率排名",
  947. ];
  948. }
  949. radarValue.push(data);
  950. });
  951. this.radarValue = radarValue;
  952. var analyis = [],
  953. gzssdl = [],
  954. jxssdl = [],
  955. xnssdl = [],
  956. xdssdl = [],
  957. slssdl = [];
  958. data.forEach((item, index) => {
  959. gzssdl.push({
  960. text: item.date || item.name,
  961. value: item.gzssdl,
  962. });
  963. jxssdl.push({
  964. text: item.date || item.name,
  965. value: item.jxssdl,
  966. });
  967. xnssdl.push({
  968. text: item.date || item.name,
  969. value: item.xnssdl,
  970. });
  971. xdssdl.push({
  972. text: item.date || item.name,
  973. value: item.xdssdl,
  974. });
  975. slssdl.push({
  976. text: item.date || item.name,
  977. value: item.slssdl,
  978. });
  979. });
  980. analyis.push(
  981. {
  982. title: "故障损失电量",
  983. yAxisIndex: 0,
  984. value: gzssdl,
  985. },
  986. {
  987. title: "检修损失电量",
  988. yAxisIndex: 0,
  989. value: jxssdl,
  990. },
  991. {
  992. title: "性能损失电量",
  993. yAxisIndex: 0,
  994. value: xnssdl,
  995. },
  996. {
  997. title: "限电损失电量",
  998. yAxisIndex: 0,
  999. value: xdssdl,
  1000. },
  1001. {
  1002. title: "受累损失电量",
  1003. yAxisIndex: 0,
  1004. value: slssdl,
  1005. }
  1006. );
  1007. this.analyisDialog = analyis;
  1008. },
  1009. },
  1010. watch: {
  1011. screenHeight(val) {
  1012. this.screenHeight = val;
  1013. if (val > 1100) {
  1014. this.echartsHeight = "58vh";
  1015. } else {
  1016. this.echartsHeight = "55vh";
  1017. }
  1018. },
  1019. },
  1020. };
  1021. </script>
  1022. <style lang="less" scoped>
  1023. .pagination-class {
  1024. text-align: right;
  1025. margin-top: 5px;
  1026. }
  1027. .parcel-box {
  1028. height: 100%;
  1029. width: 100%;
  1030. padding: 0 30px;
  1031. padding-bottom: 10px;
  1032. }
  1033. /deep/ .s-tb-th {
  1034. height: 50px;
  1035. }
  1036. .form-wrapper {
  1037. display: flex;
  1038. flex-direction: row;
  1039. align-items: center;
  1040. margin-top: 10px;
  1041. margin-bottom: 10px;
  1042. .tabCut {
  1043. display: inline-block;
  1044. margin: 0 10px;
  1045. div {
  1046. display: inline-block;
  1047. width: 60px;
  1048. height: 27px;
  1049. border: 1px solid #274934;
  1050. text-align: center;
  1051. line-height: 25px;
  1052. cursor: pointer;
  1053. }
  1054. div:nth-child(1) {
  1055. border-radius: 13px 0px 0px 13px;
  1056. border-right-width: 0;
  1057. }
  1058. div:nth-child(2) {
  1059. border-radius: 0px 13px 13px 0px;
  1060. }
  1061. .active {
  1062. background-color: rgba(5, 187, 76, 0.9);
  1063. color: #fff;
  1064. }
  1065. .disabled {
  1066. cursor: not-allowed;
  1067. pointer-events: none;
  1068. }
  1069. }
  1070. .tabCut1 {
  1071. display: inline-block;
  1072. margin: 0 10px;
  1073. div {
  1074. display: inline-block;
  1075. width: 60px;
  1076. height: 27px;
  1077. border: 1px solid #274934;
  1078. text-align: center;
  1079. line-height: 25px;
  1080. cursor: pointer;
  1081. }
  1082. div:nth-child(1) {
  1083. border-radius: 13px 0px 0px 13px;
  1084. }
  1085. div:nth-child(3) {
  1086. border-radius: 0px 13px 13px 0px;
  1087. }
  1088. .active {
  1089. background-color: rgba(5, 187, 76, 0.9);
  1090. color: #fff;
  1091. }
  1092. }
  1093. .station {
  1094. display: flex;
  1095. flex-direction: row;
  1096. align-items: center;
  1097. font-size: 14px;
  1098. font-family: Microsoft YaHei;
  1099. font-weight: 400;
  1100. color: #b3b3b3;
  1101. margin-right: 10px;
  1102. }
  1103. .search-input {
  1104. margin-left: 10px;
  1105. }
  1106. .but {
  1107. display: flex;
  1108. flex-direction: row;
  1109. align-content: center;
  1110. margin-left: 20px;
  1111. }
  1112. .buttons {
  1113. background-color: rgba(5, 187, 76, 0.2);
  1114. border: 1px solid #3b6c53;
  1115. color: #b3b3b3;
  1116. font-size: 14px;
  1117. &:hover {
  1118. background-color: rgba(5, 187, 76, 0.5);
  1119. color: #ffffff;
  1120. }
  1121. }
  1122. }
  1123. .bodys {
  1124. width: 100%;
  1125. height: calc(100% - 350px - 43px - 20px);
  1126. background-color: rgba(0, 0, 0, 0.45);
  1127. // padding-bottom: 20px;
  1128. border-radius: 5px;
  1129. }
  1130. .economicTable {
  1131. width: 100%;
  1132. height: calc(100% - 36px);
  1133. }
  1134. .line {
  1135. display: flex;
  1136. flex-direction: row;
  1137. align-items: center;
  1138. justify-content: space-between;
  1139. width: 100%;
  1140. .leftContent {
  1141. width: 242px;
  1142. height: 41px;
  1143. display: flex;
  1144. align-items: center;
  1145. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  1146. span {
  1147. font-size: 16px;
  1148. font-family: Microsoft YaHei;
  1149. font-weight: 400;
  1150. color: #05bb4c;
  1151. margin-left: 25px;
  1152. }
  1153. }
  1154. .rightContent {
  1155. width: 212px;
  1156. height: 28px;
  1157. margin-top: 13px;
  1158. background: url("../../../../assets/imgs/title_right_bg.png");
  1159. }
  1160. }
  1161. .echarts {
  1162. width: 100%;
  1163. height: 350px;
  1164. display: flex;
  1165. flex-direction: row;
  1166. align-items: center;
  1167. .chart-name {
  1168. display: flex;
  1169. align-items: center;
  1170. padding-left: 20px;
  1171. position: relative;
  1172. height: 39px;
  1173. width: 98%;
  1174. margin-left: 1%;
  1175. border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  1176. font-size: 16px;
  1177. font-family: Microsoft YaHei;
  1178. font-weight: 400;
  1179. color: #ffffff;
  1180. }
  1181. .pie-echarts {
  1182. width: 30%;
  1183. height: 100%;
  1184. background: rgba(0, 0, 0, 0.45);
  1185. border-radius: 5px;
  1186. }
  1187. .bar-echarts {
  1188. width: 69%;
  1189. margin-left: 1%;
  1190. height: 100%;
  1191. background: rgba(0, 0, 0, 0.45);
  1192. border-radius: 5px;
  1193. }
  1194. }
  1195. .point {
  1196. width: 6px;
  1197. height: 1px;
  1198. background-color: #ffffff;
  1199. position: absolute;
  1200. &.point-left {
  1201. left: 0;
  1202. }
  1203. &.point-right {
  1204. right: 0;
  1205. }
  1206. &.top {
  1207. top: -1px;
  1208. }
  1209. &.bottom {
  1210. bottom: -1px;
  1211. }
  1212. }
  1213. /*去除表头全选框*/
  1214. ::v-deep .el-table__header-wrapper .el-checkbox {
  1215. display: none;
  1216. }
  1217. ::v-deep .el-table__body-wrapper .el-checkbox {
  1218. .el-checkbox__input {
  1219. display: block;
  1220. }
  1221. }
  1222. </style>