index.vue 31 KB

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