index.vue 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601
  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. 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. <!-- <el-button round size="mini" class="buttons">导出</el-button> -->
  110. </div>
  111. </div>
  112. <div class="bodys" v-if="!displayDetail">
  113. <div class="line">
  114. <div class="leftContent"><span>场内对标</span></div>
  115. <div class="rightContent"></div>
  116. </div>
  117. <div class="economicTable" :style="{ height: echartsHeight }">
  118. <el-table
  119. :data="tableData"
  120. ref="multipleTable"
  121. size="mini"
  122. :height="echartsHeight"
  123. :cell-style="{ padding: '4px' }"
  124. :row-style="{ height: '0' }"
  125. stripe
  126. @selection-change="handleCurrentChange"
  127. >
  128. <el-table-column type="selection" width="60" align="center">
  129. </el-table-column>
  130. <el-table-column
  131. align="center"
  132. prop="zhpm"
  133. show-overflow-tooltip
  134. label="综合排名"
  135. width="80"
  136. sortable
  137. >
  138. </el-table-column>
  139. <el-table-column
  140. align="center"
  141. show-overflow-tooltip
  142. prop="date"
  143. label="日期"
  144. sortable
  145. width="100"
  146. >
  147. </el-table-column>
  148. <el-table-column
  149. align="center"
  150. show-overflow-tooltip
  151. prop="fdlpm"
  152. label="发电量排名"
  153. sortable
  154. width="65"
  155. >
  156. </el-table-column>
  157. <el-table-column
  158. align="center"
  159. show-overflow-tooltip
  160. prop="fdl"
  161. label="发电量"
  162. sortable
  163. width="65"
  164. >
  165. </el-table-column>
  166. <el-table-column
  167. align="center"
  168. show-overflow-tooltip
  169. prop="gzssdlpm"
  170. label="故障损失排名"
  171. sortable
  172. width="65"
  173. >
  174. </el-table-column>
  175. <el-table-column
  176. align="center"
  177. show-overflow-tooltip
  178. prop="gzssdl"
  179. label="故障损失"
  180. sortable
  181. width="65"
  182. >
  183. </el-table-column>
  184. <el-table-column
  185. align="center"
  186. show-overflow-tooltip
  187. prop="jxssdlpm"
  188. label="检修损失排名"
  189. sortable
  190. width="65"
  191. >
  192. </el-table-column>
  193. <el-table-column
  194. align="center"
  195. show-overflow-tooltip
  196. prop="jxssdl"
  197. label="检修损失"
  198. sortable
  199. width="65"
  200. >
  201. </el-table-column>
  202. <el-table-column
  203. align="center"
  204. show-overflow-tooltip
  205. prop="xnssdlpm"
  206. label="性能损失排名"
  207. sortable
  208. width="65"
  209. >
  210. </el-table-column>
  211. <el-table-column
  212. align="center"
  213. show-overflow-tooltip
  214. prop="xnssdl"
  215. label="性能损失"
  216. sortable
  217. width="65"
  218. >
  219. </el-table-column>
  220. <el-table-column
  221. align="center"
  222. show-overflow-tooltip
  223. prop="xdssdlpm"
  224. label="限电损失排名"
  225. sortable
  226. width="65"
  227. >
  228. </el-table-column>
  229. <el-table-column
  230. align="center"
  231. show-overflow-tooltip
  232. prop="xdssdl"
  233. label="限电损失"
  234. sortable
  235. width="65"
  236. >
  237. </el-table-column>
  238. <el-table-column
  239. align="center"
  240. show-overflow-tooltip
  241. prop="slssdlpm"
  242. label="受累损失排名"
  243. sortable
  244. width="65"
  245. >
  246. </el-table-column>
  247. <el-table-column
  248. align="center"
  249. show-overflow-tooltip
  250. prop="slssdl"
  251. label="受累损失"
  252. sortable
  253. width="65"
  254. >
  255. </el-table-column>
  256. <el-table-column
  257. align="center"
  258. show-overflow-tooltip
  259. prop="fnlylpm"
  260. :label="(tabIndex === -1 ? '风能' : '光能') + '利用率排名'"
  261. sortable
  262. width="65"
  263. >
  264. </el-table-column>
  265. <el-table-column
  266. align="center"
  267. show-overflow-tooltip
  268. prop="fnlyl"
  269. :label="(tabIndex === -1 ? '风能' : '光能') + '利用率(%)'"
  270. sortable
  271. width="65"
  272. >
  273. </el-table-column>
  274. <el-table-column
  275. align="center"
  276. show-overflow-tooltip
  277. prop="gzsslpm"
  278. label="故障损失率排名"
  279. sortable
  280. width="65"
  281. >
  282. </el-table-column>
  283. <el-table-column
  284. align="center"
  285. prop="gzssl"
  286. show-overflow-tooltip
  287. label="故障损失率(%)"
  288. sortable
  289. width="65"
  290. >
  291. </el-table-column>
  292. <el-table-column
  293. align="center"
  294. prop="jxsslpm"
  295. show-overflow-tooltip
  296. label="检修损失率排名"
  297. sortable
  298. width="65"
  299. >
  300. </el-table-column>
  301. <el-table-column
  302. align="center"
  303. prop="jxssl"
  304. show-overflow-tooltip
  305. label="检修损失率(%)"
  306. sortable
  307. width="65"
  308. >
  309. </el-table-column>
  310. <el-table-column
  311. align="center"
  312. prop="qflpm"
  313. show-overflow-tooltip
  314. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率排名'"
  315. sortable
  316. width="65"
  317. >
  318. </el-table-column>
  319. <el-table-column
  320. align="center"
  321. prop="qfl"
  322. show-overflow-tooltip
  323. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率(%)'"
  324. sortable
  325. width="65"
  326. >
  327. </el-table-column>
  328. <el-table-column
  329. align="center"
  330. prop="xnsslpm"
  331. show-overflow-tooltip
  332. label="性能损失率排名"
  333. sortable
  334. width="65"
  335. >
  336. </el-table-column>
  337. <el-table-column
  338. align="center"
  339. prop="xnssl"
  340. show-overflow-tooltip
  341. label="性能损失率(%)"
  342. sortable
  343. width="65"
  344. >
  345. </el-table-column>
  346. <el-table-column
  347. align="center"
  348. prop="slsslpm"
  349. show-overflow-tooltip
  350. label="受累损失率排名"
  351. sortable
  352. width="65"
  353. >
  354. </el-table-column>
  355. <el-table-column
  356. align="center"
  357. prop="slssl"
  358. show-overflow-tooltip
  359. label="受累损失率(%)"
  360. sortable
  361. width="65"
  362. >
  363. </el-table-column>
  364. <el-table-column align="center" prop="" label="操作">
  365. <template v-slot="scope">
  366. <span
  367. @click="goDetail(scope.row)"
  368. style="cursor: pointer; color: #05bb4c"
  369. >详情</span
  370. >
  371. </template>
  372. </el-table-column>
  373. </el-table>
  374. <div class="pagination-class">
  375. <el-pagination
  376. @current-change="handlePageChange"
  377. :current-page="page.currentPage"
  378. :page-size="page.pagesize"
  379. layout="total, prev, pager, next, jumper"
  380. :total="page.total"
  381. >
  382. </el-pagination>
  383. </div>
  384. </div>
  385. </div>
  386. <div class="echarts" v-if="!displayDetail">
  387. <div class="pie-echarts">
  388. <div class="chart-name">
  389. <div class="point point-left bottom"></div>
  390. <div class="point point-right bottom"></div>
  391. 损失电量分析
  392. </div>
  393. <PieChart
  394. :lossPower="lossPower"
  395. width="100%"
  396. height="20vh"
  397. :showLable="false"
  398. ></PieChart>
  399. </div>
  400. <div class="bar-echarts">
  401. <div class="chart-name">
  402. <div class="point point-left bottom"></div>
  403. <div class="point point-right bottom"></div>
  404. 五项损失
  405. </div>
  406. <BarCharts
  407. :list="barList"
  408. width="100%"
  409. height="29vh"
  410. :showLegend="true"
  411. :xdate="false"
  412. :colorIndex="true"
  413. ></BarCharts>
  414. </div>
  415. </div>
  416. <div v-if="displayDetail">
  417. <el-table
  418. :data="detailTable"
  419. ref="multipleTable"
  420. size="mini"
  421. height="78vh"
  422. :cell-style="{ padding: '0px' }"
  423. :row-style="{ height: '0' }"
  424. stripe
  425. @selection-change="handleCurrentChange"
  426. >
  427. <el-table-column type="selection" width="60" align="center">
  428. </el-table-column>
  429. <el-table-column
  430. show-overflow-tooltip
  431. align="center"
  432. prop="name"
  433. label="风机名称"
  434. width="150"
  435. sortable
  436. >
  437. </el-table-column>
  438. <el-table-column
  439. show-overflow-tooltip
  440. align="center"
  441. prop="zhpm"
  442. label="综合排名"
  443. sortable
  444. >
  445. </el-table-column>
  446. <el-table-column
  447. show-overflow-tooltip
  448. align="center"
  449. prop="gzssdl"
  450. label="故障损失"
  451. sortable
  452. >
  453. </el-table-column>
  454. <el-table-column
  455. show-overflow-tooltip
  456. align="center"
  457. prop="jxssdlpm"
  458. label="检修损失排名"
  459. sortable
  460. >
  461. </el-table-column>
  462. <el-table-column
  463. show-overflow-tooltip
  464. align="center"
  465. prop="jxssdl"
  466. label="检修损失"
  467. sortable
  468. >
  469. </el-table-column>
  470. <el-table-column
  471. show-overflow-tooltip
  472. align="center"
  473. prop="xnssdlpm"
  474. label="性能损失排名"
  475. sortable
  476. >
  477. </el-table-column>
  478. <el-table-column
  479. show-overflow-tooltip
  480. align="center"
  481. prop="xnssdl"
  482. label="性能损失"
  483. sortable
  484. >
  485. </el-table-column>
  486. <el-table-column
  487. show-overflow-tooltip
  488. align="center"
  489. prop="xdssdlpm"
  490. label="限电损失排名"
  491. sortable
  492. >
  493. </el-table-column>
  494. <el-table-column
  495. show-overflow-tooltip
  496. align="center"
  497. prop="xdssdl"
  498. label="限电损失"
  499. sortable
  500. >
  501. </el-table-column>
  502. <el-table-column
  503. show-overflow-tooltip
  504. align="center"
  505. prop="slssdlpm"
  506. label="受累损失排名"
  507. sortable
  508. >
  509. </el-table-column>
  510. <el-table-column
  511. show-overflow-tooltip
  512. align="center"
  513. prop="slssdl"
  514. label="受累损失"
  515. sortable
  516. >
  517. </el-table-column>
  518. <el-table-column
  519. show-overflow-tooltip
  520. align="center"
  521. prop="gzsslpm"
  522. label="故障损失率排名"
  523. sortable
  524. >
  525. </el-table-column>
  526. <el-table-column
  527. show-overflow-tooltip
  528. align="center"
  529. prop="gzssl"
  530. label="故障损失率(%)"
  531. sortable
  532. >
  533. </el-table-column>
  534. <el-table-column
  535. show-overflow-tooltip
  536. align="center"
  537. prop="jxsslpm"
  538. label="检修损失率排名"
  539. sortable
  540. >
  541. </el-table-column>
  542. <el-table-column
  543. show-overflow-tooltip
  544. align="center"
  545. prop="jxssl"
  546. label="检修损失率(%)"
  547. sortable
  548. >
  549. </el-table-column>
  550. <el-table-column
  551. show-overflow-tooltip
  552. align="center"
  553. prop="qflpm"
  554. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率排名'"
  555. sortable
  556. >
  557. </el-table-column>
  558. <el-table-column
  559. show-overflow-tooltip
  560. align="center"
  561. prop="qfl"
  562. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率(%)'"
  563. sortable
  564. >
  565. </el-table-column>
  566. <el-table-column
  567. show-overflow-tooltip
  568. align="center"
  569. prop="xnsslpm"
  570. label="性能损失率排名"
  571. sortable
  572. >
  573. </el-table-column>
  574. <el-table-column
  575. show-overflow-tooltip
  576. align="center"
  577. prop="xnssl"
  578. label="性能损失率(%)"
  579. sortable
  580. >
  581. </el-table-column>
  582. <el-table-column
  583. show-overflow-tooltip
  584. align="center"
  585. prop="slsslpm"
  586. label="受累损失率排名"
  587. sortable
  588. >
  589. </el-table-column>
  590. <el-table-column
  591. show-overflow-tooltip
  592. align="center"
  593. prop="slssl"
  594. label="受累损失率(%)"
  595. sortable
  596. >
  597. </el-table-column>
  598. </el-table>
  599. <div class="pagination-class">
  600. <el-pagination
  601. @current-change="handlePageDChange"
  602. :current-page="pageD.currentPage"
  603. :page-size="pageD.pagesize"
  604. layout="total, prev, pager, next, jumper"
  605. :total="pageD.total"
  606. >
  607. </el-pagination>
  608. </div>
  609. </div>
  610. <el-dialog
  611. class="dialogs"
  612. width="90%"
  613. top="40px"
  614. v-model="dialogVisible"
  615. :show-close="true"
  616. >
  617. <template #title>
  618. <div class="dialog-title">
  619. <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
  620. <div class="title">对标排名分析</div>
  621. </div>
  622. </template>
  623. <div class="dialog-body">
  624. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  625. <dayinfo
  626. :radarValue="radarValue"
  627. :title="[windNum, windNum2]"
  628. :windNum="windNum"
  629. :windNum2="windNum2"
  630. :windNum3="windNum3"
  631. :windNum4="windNum4"
  632. :windNum5="windNum5"
  633. :tabs="tabs"
  634. :analyisDialog="analyisDialog"
  635. />
  636. </div>
  637. </el-dialog>
  638. <el-dialog
  639. class="dialogs"
  640. width="94%"
  641. top="40px"
  642. v-model="thbVisible"
  643. :show-close="true"
  644. >
  645. <template #title>
  646. <div class="dialog-title">
  647. <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
  648. <div class="title">同环比分析</div>
  649. </div>
  650. </template>
  651. <div class="dialog-body">
  652. <img class="dialog-img" src="@assets/imgs/dialog.png" />
  653. <div class="economicTable" :style="{ height: echartsHeight }">
  654. <el-table
  655. :data="thbData"
  656. ref="multipleTable1"
  657. size="mini"
  658. :height="echartsHeight"
  659. :cell-style="{ padding: '4px' }"
  660. :row-style="{ height: '0' }"
  661. stripe
  662. >
  663. <el-table-column
  664. show-overflow-tooltip
  665. align="center"
  666. label-class-name="s-tb-th"
  667. prop="zhpm"
  668. label="综合排名"
  669. minWidth="80"
  670. sortable
  671. >
  672. </el-table-column>
  673. <el-table-column
  674. show-overflow-tooltip
  675. align="center"
  676. label-class-name="s-tb-th"
  677. prop="name"
  678. label="类型"
  679. sortable
  680. minWidth="100"
  681. >
  682. </el-table-column>
  683. <el-table-column
  684. show-overflow-tooltip
  685. align="center"
  686. label-class-name="s-tb-th"
  687. prop="fdlpm"
  688. label="发电量排名"
  689. sortable
  690. minWidth="65"
  691. >
  692. </el-table-column>
  693. <el-table-column
  694. show-overflow-tooltip
  695. align="center"
  696. label-class-name="s-tb-th"
  697. prop="fdl"
  698. label="发电量"
  699. sortable
  700. minWidth="65"
  701. >
  702. </el-table-column>
  703. <el-table-column
  704. show-overflow-tooltip
  705. align="center"
  706. label-class-name="s-tb-th"
  707. prop="gzssdlpm"
  708. label="故障损失排名"
  709. sortable
  710. minWidth="65"
  711. >
  712. </el-table-column>
  713. <el-table-column
  714. show-overflow-tooltip
  715. align="center"
  716. label-class-name="s-tb-th"
  717. prop="gzssdl"
  718. label="故障损失"
  719. sortable
  720. minWidth="65"
  721. >
  722. </el-table-column>
  723. <el-table-column
  724. show-overflow-tooltip
  725. align="center"
  726. label-class-name="s-tb-th"
  727. prop="jxssdlpm"
  728. label="检修损失排名"
  729. sortable
  730. minWidth="65"
  731. >
  732. </el-table-column>
  733. <el-table-column
  734. show-overflow-tooltip
  735. align="center"
  736. label-class-name="s-tb-th"
  737. prop="jxssdl"
  738. label="检修损失"
  739. sortable
  740. minWidth="65"
  741. >
  742. </el-table-column>
  743. <el-table-column
  744. show-overflow-tooltip
  745. align="center"
  746. label-class-name="s-tb-th"
  747. prop="xnssdlpm"
  748. label="性能损失排名"
  749. sortable
  750. minWidth="65"
  751. >
  752. </el-table-column>
  753. <el-table-column
  754. show-overflow-tooltip
  755. align="center"
  756. label-class-name="s-tb-th"
  757. prop="xnssdl"
  758. label="性能损失"
  759. sortable
  760. minWidth="65"
  761. >
  762. </el-table-column>
  763. <el-table-column
  764. show-overflow-tooltip
  765. align="center"
  766. label-class-name="s-tb-th"
  767. prop="xdssdlpm"
  768. label="限电损失排名"
  769. sortable
  770. minWidth="65"
  771. >
  772. </el-table-column>
  773. <el-table-column
  774. show-overflow-tooltip
  775. align="center"
  776. label-class-name="s-tb-th"
  777. prop="xdssdl"
  778. label="限电损失"
  779. sortable
  780. minWidth="65"
  781. >
  782. </el-table-column>
  783. <el-table-column
  784. show-overflow-tooltip
  785. align="center"
  786. label-class-name="s-tb-th"
  787. prop="slssdlpm"
  788. label="受累损失排名"
  789. sortable
  790. minWidth="65"
  791. >
  792. </el-table-column>
  793. <el-table-column
  794. show-overflow-tooltip
  795. align="center"
  796. label-class-name="s-tb-th"
  797. prop="slssdl"
  798. label="受累损失"
  799. sortable
  800. minWidth="65"
  801. >
  802. </el-table-column>
  803. <el-table-column
  804. show-overflow-tooltip
  805. align="center"
  806. label-class-name="s-tb-th"
  807. prop="fnlylpm"
  808. :label="(tabIndex === -1 ? '风能' : '光能') + '利用率排名'"
  809. sortable
  810. minWidth="65"
  811. >
  812. </el-table-column>
  813. <el-table-column
  814. show-overflow-tooltip
  815. align="center"
  816. label-class-name="s-tb-th"
  817. prop="fnlyl"
  818. :label="(tabIndex === -1 ? '风能' : '光能') + '利用率(%)'"
  819. sortable
  820. minWidth="65"
  821. >
  822. </el-table-column>
  823. <el-table-column
  824. show-overflow-tooltip
  825. align="center"
  826. label-class-name="s-tb-th"
  827. prop="gzsslpm"
  828. label="故障损失率排名"
  829. sortable
  830. minWidth="65"
  831. >
  832. </el-table-column>
  833. <el-table-column
  834. show-overflow-tooltip
  835. align="center"
  836. label-class-name="s-tb-th"
  837. prop="gzssl"
  838. label="故障损失率(%)"
  839. sortable
  840. minWidth="65"
  841. >
  842. </el-table-column>
  843. <el-table-column
  844. show-overflow-tooltip
  845. align="center"
  846. label-class-name="s-tb-th"
  847. prop="jxsslpm"
  848. label="检修损失率排名"
  849. sortable
  850. minWidth="65"
  851. >
  852. </el-table-column>
  853. <el-table-column
  854. show-overflow-tooltip
  855. align="center"
  856. label-class-name="s-tb-th"
  857. prop="jxssl"
  858. label="检修损失率(%)"
  859. sortable
  860. minWidth="65"
  861. >
  862. </el-table-column>
  863. <el-table-column
  864. show-overflow-tooltip
  865. align="center"
  866. label-class-name="s-tb-th"
  867. prop="qflpm"
  868. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率排名'"
  869. sortable
  870. minWidth="65"
  871. >
  872. </el-table-column>
  873. <el-table-column
  874. show-overflow-tooltip
  875. align="center"
  876. label-class-name="s-tb-th"
  877. prop="qfl"
  878. :label="'弃' + (tabIndex === -1 ? '风' : '光') + '率(%)'"
  879. sortable
  880. minWidth="65"
  881. >
  882. </el-table-column>
  883. <el-table-column
  884. show-overflow-tooltip
  885. align="center"
  886. label-class-name="s-tb-th"
  887. prop="xnsslpm"
  888. label="性能损失率排名"
  889. sortable
  890. minWidth="65"
  891. >
  892. </el-table-column>
  893. <el-table-column
  894. show-overflow-tooltip
  895. align="center"
  896. label-class-name="s-tb-th"
  897. prop="xnssl"
  898. label="性能损失率(%)"
  899. sortable
  900. minWidth="65"
  901. >
  902. </el-table-column>
  903. <el-table-column
  904. show-overflow-tooltip
  905. align="center"
  906. label-class-name="s-tb-th"
  907. prop="slsslpm"
  908. label="受累损失率排名"
  909. sortable
  910. minWidth="65"
  911. >
  912. </el-table-column>
  913. <el-table-column
  914. show-overflow-tooltip
  915. align="center"
  916. label-class-name="s-tb-th"
  917. prop="slssl"
  918. label="受累损失率(%)"
  919. sortable
  920. minWidth="65"
  921. >
  922. </el-table-column>
  923. </el-table>
  924. </div>
  925. </div>
  926. </el-dialog>
  927. </div>
  928. </template>
  929. <script>
  930. import dayjs from "dayjs";
  931. import { companys } from "@/api/curveAnalyse";
  932. import { getStation, cndb, thb, details } from "@/api/performance";
  933. import PieChart from "../../homePage/components/pieChart.vue";
  934. import BarCharts from "../../homePage/components/barCharts.vue";
  935. import dayinfo from "../compontent/dayinfo.vue";
  936. export default {
  937. name: "siteBenchmarking", //场内对标
  938. components: {
  939. PieChart,
  940. BarCharts,
  941. dayinfo,
  942. },
  943. data() {
  944. return {
  945. page: {
  946. pagesize: 10,
  947. currentPage: 1,
  948. total: 0,
  949. },
  950. pageD: {
  951. pagesize: 18,
  952. currentPage: 1,
  953. total: 0,
  954. },
  955. company: "",
  956. companyOptions: [],
  957. stationObj: "",
  958. stationList: [],
  959. starTime: "",
  960. endTime: "",
  961. tabIndex: -1,
  962. tabOptions: [
  963. { id: -1, name: "风电" },
  964. { id: -2, name: "光伏" },
  965. ],
  966. tableData: [],
  967. detailTable: [],
  968. chooseList: [],
  969. lossPower: [],
  970. barList: [],
  971. displayDetail: false,
  972. dialogVisible: false,
  973. radarValue: [],
  974. windNum: "",
  975. windNum2: "",
  976. windNum3: "",
  977. windNum4: "",
  978. windNum5: "",
  979. tabs: [],
  980. analyisDialog: [],
  981. screenHeight: window.innerHeight,
  982. echartsHeight: "53vh",
  983. //同环比
  984. thbVisible: false,
  985. thbData: [],
  986. };
  987. },
  988. created() {
  989. // let date = new Date();
  990. // date.setDate(1);
  991. // let month = parseInt(date.getMonth() + 1);
  992. // let day = date.getDate();
  993. // if (month < 10) {
  994. // month = '0' + month;
  995. // }
  996. // if (day < 10) {
  997. // day = '0' + day;
  998. // }
  999. // this.starTime = date.getFullYear() + '-' + month + '-' + day;
  1000. this.starTime = dayjs(new Date().getTime() - 60000 * 60 * 24 * 7).format(
  1001. "YYYY-MM-DD"
  1002. );
  1003. this.endTime = dayjs(new Date().getTime()).format("YYYY-MM-DD");
  1004. this.initialization();
  1005. },
  1006. mounted() {
  1007. if (this.screenHeight > 1100) {
  1008. this.echartsHeight = "56vh";
  1009. } else {
  1010. this.echartsHeight = "53vh";
  1011. }
  1012. window.onresize = () => {
  1013. return (() => {
  1014. window.screenHeight = window.innerHeight;
  1015. this.screenHeight = window.screenHeight;
  1016. })();
  1017. };
  1018. },
  1019. methods: {
  1020. handlePageChange(val) {
  1021. this.page.currentPage = val;
  1022. this.gerCndb();
  1023. },
  1024. handlePageDChange(val) {
  1025. this.pageD.currentPage = val;
  1026. this.goDetail();
  1027. },
  1028. funthb() {
  1029. thb({
  1030. companys: this.company,
  1031. type: this.tabIndex,
  1032. // beginDate: this.starTime,
  1033. // endDate: this.endTime,
  1034. pageNum: 1,
  1035. pageSize: 10,
  1036. wpids: this.stationObj,
  1037. }).then(({ data: res }) => {
  1038. if (res.data) {
  1039. this.thbData = res.data;
  1040. this.thbVisible = true;
  1041. }
  1042. });
  1043. },
  1044. tabClick(val) {
  1045. this.tabIndex = val;
  1046. this.getStation(this.company);
  1047. this.gerCndb();
  1048. // this.initialization();
  1049. },
  1050. initialization() {
  1051. companys().then(({ data: res }) => {
  1052. if (res.data) {
  1053. this.company = res.data[0].id;
  1054. this.companyOptions = res.data;
  1055. this.getStation(res.data[0].id);
  1056. }
  1057. });
  1058. },
  1059. getStation(companyids) {
  1060. getStation({
  1061. companyids: companyids,
  1062. type: this.tabIndex,
  1063. }).then(({ data: res }) => {
  1064. if (res.data.length) {
  1065. this.stationList = res.data;
  1066. this.stationObj = res.data[0].id;
  1067. this.gerCndb();
  1068. } else {
  1069. this.stationList = [];
  1070. this.stationObj = "";
  1071. this.gerCndb();
  1072. }
  1073. });
  1074. },
  1075. gerCndb() {
  1076. cndb({
  1077. companys: this.company,
  1078. type: this.tabIndex,
  1079. beginDate: this.starTime,
  1080. endDate: this.endTime,
  1081. wpids: this.stationObj,
  1082. pageSize: this.page.pagesize,
  1083. pageNum: this.page.currentPage,
  1084. target: "",
  1085. sort: "",
  1086. }).then(({ data: res }) => {
  1087. if (res.data) {
  1088. let barList = [
  1089. {
  1090. name: "故障损失电量",
  1091. children: [],
  1092. date: [],
  1093. },
  1094. {
  1095. name: "检修损失电量",
  1096. children: [],
  1097. },
  1098. {
  1099. name: "性能损失电量",
  1100. children: [],
  1101. },
  1102. {
  1103. name: "限电损失电量",
  1104. children: [],
  1105. },
  1106. {
  1107. name: "受累损失电量",
  1108. children: [],
  1109. },
  1110. ];
  1111. this.tableData = res.data.resultList;
  1112. this.page.total = res.data.total;
  1113. let lossPower = [];
  1114. res.data.resultList.forEach((item) => {
  1115. let obj = {
  1116. name: item.date,
  1117. value: item.zssdl,
  1118. };
  1119. lossPower.push(obj);
  1120. barList[0].date.push(item.date);
  1121. barList[0].children.push(item.gzssdl);
  1122. barList[1].children.push(item.jxssdl);
  1123. barList[2].children.push(item.xnssdl);
  1124. barList[3].children.push(item.xdssdl);
  1125. barList[4].children.push(item.slssdl);
  1126. });
  1127. this.lossPower = lossPower;
  1128. this.barList = barList;
  1129. }
  1130. });
  1131. },
  1132. handleStationChange(val) {
  1133. this.stationObj = val;
  1134. this.gerCndb();
  1135. },
  1136. handleCompanyChange(val) {
  1137. this.company = val;
  1138. this.getStation(val);
  1139. this.gerCndb();
  1140. },
  1141. handleCurrentChange(val) {
  1142. if (val.length > 5) {
  1143. let del_row = val.shift();
  1144. this.$refs.multipleTable.toggleRowSelection(del_row, false);
  1145. }
  1146. let arr = [];
  1147. val.forEach((item, index) => {
  1148. if (index < 5) {
  1149. arr.push(item);
  1150. }
  1151. });
  1152. this.chooseList = arr;
  1153. },
  1154. goDetail(row) {
  1155. this.displayDetail = true;
  1156. details({
  1157. id: this.stationObj,
  1158. beginDate: this.starTime,
  1159. endDate: this.endTime,
  1160. pageSize: this.pageD.pagesize,
  1161. pageNum: this.pageD.currentPage,
  1162. target: "",
  1163. sort: "",
  1164. }).then(({ data: res }) => {
  1165. if (res.data) {
  1166. this.detailTable = res.data.resultList;
  1167. this.pageD.total = res.data.total;
  1168. }
  1169. });
  1170. },
  1171. goBack() {
  1172. this.displayDetail = false;
  1173. },
  1174. dbfx() {
  1175. if (this.chooseList.length <= 5) {
  1176. this.dialogVisible = true;
  1177. this.AjaxDbfx();
  1178. }
  1179. },
  1180. AjaxDbfx() {
  1181. var data = this.chooseList;
  1182. this.windNum = data[0]?.date || data[0]?.name;
  1183. this.windNum2 = data[1]?.date || data[1]?.name;
  1184. this.windNum3 = data[2]?.date || data[2]?.name;
  1185. this.windNum4 = data[3]?.date || data[3]?.name;
  1186. this.windNum5 = data[4]?.date || data[4]?.name;
  1187. let tabs = [
  1188. {
  1189. name: "发电量",
  1190. code: "fdl",
  1191. },
  1192. {
  1193. name: "故障损失电量",
  1194. code: "gzssdl",
  1195. },
  1196. {
  1197. name: "检修损失电量",
  1198. code: "jxssdl",
  1199. },
  1200. {
  1201. name: "性能未达标损失电量",
  1202. code: "xnssdl",
  1203. },
  1204. {
  1205. name: "受累损失电量",
  1206. code: "slssdl",
  1207. },
  1208. {
  1209. name: "风能利用率",
  1210. code: "fnlyl",
  1211. },
  1212. {
  1213. name: "故障损失率",
  1214. code: "gzssl",
  1215. },
  1216. {
  1217. name: "检修损失率",
  1218. code: "jxssl",
  1219. },
  1220. {
  1221. name: "弃风率",
  1222. code: "qfl",
  1223. },
  1224. {
  1225. name: "性能损失率",
  1226. code: "xnssl",
  1227. },
  1228. {
  1229. name: "受累损失率",
  1230. code: "slssl",
  1231. },
  1232. ];
  1233. tabs = tabs.map((item) => {
  1234. if (item.code == "fnlyl") {
  1235. if (this.tabIndex == -1) {
  1236. item.name = "风能利用率";
  1237. } else {
  1238. item.name = "光能利用率";
  1239. }
  1240. }
  1241. if (item.code == "qfl") {
  1242. if (this.tabIndex == -1) {
  1243. item.name = "弃风率";
  1244. } else {
  1245. item.name = "弃光率";
  1246. }
  1247. }
  1248. return item;
  1249. });
  1250. tabs.forEach((val) => {
  1251. data.forEach((item, index) => {
  1252. val["windData" + (index + 1)] = item[val.code];
  1253. });
  1254. });
  1255. this.tabs = tabs;
  1256. let radarValue = [];
  1257. data.forEach((item, index) => {
  1258. let data = {
  1259. indicator: [
  1260. "风能利用率排名",
  1261. "故障损失率排名",
  1262. "检修损失率排名",
  1263. "弃风率排名",
  1264. "性能损失率排名",
  1265. "受累损失率排名",
  1266. ],
  1267. data: [
  1268. {
  1269. value: [
  1270. item.fnlylpm,
  1271. item.gzsslpm,
  1272. item.jxsslpm,
  1273. item.qflpm,
  1274. item.xnsslpm,
  1275. item.slsslpm,
  1276. ],
  1277. name: item.name,
  1278. },
  1279. ],
  1280. };
  1281. if (this.tabIndex == -1) {
  1282. data.indicator = [
  1283. "风能利用率排名",
  1284. "故障损失率排名",
  1285. "检修损失率排名",
  1286. "弃风率排名",
  1287. "性能损失率排名",
  1288. "受累损失率排名",
  1289. ];
  1290. } else {
  1291. data.indicator = [
  1292. "光能利用率排名",
  1293. "故障损失率排名",
  1294. "检修损失率排名",
  1295. "弃光率排名",
  1296. "性能损失率排名",
  1297. "受累损失率排名",
  1298. ];
  1299. }
  1300. radarValue.push(data);
  1301. });
  1302. this.radarValue = radarValue;
  1303. var analyis = [],
  1304. gzssdl = [],
  1305. jxssdl = [],
  1306. xnssdl = [],
  1307. xdssdl = [],
  1308. slssdl = [];
  1309. data.forEach((item, index) => {
  1310. gzssdl.push({
  1311. text: item.date || item.name,
  1312. value: item.gzssdl,
  1313. });
  1314. jxssdl.push({
  1315. text: item.date || item.name,
  1316. value: item.jxssdl,
  1317. });
  1318. xnssdl.push({
  1319. text: item.date || item.name,
  1320. value: item.xnssdl,
  1321. });
  1322. xdssdl.push({
  1323. text: item.date || item.name,
  1324. value: item.xdssdl,
  1325. });
  1326. slssdl.push({
  1327. text: item.date || item.name,
  1328. value: item.slssdl,
  1329. });
  1330. });
  1331. analyis.push(
  1332. {
  1333. title: "故障损失电量",
  1334. yAxisIndex: 0,
  1335. value: gzssdl,
  1336. },
  1337. {
  1338. title: "检修损失电量",
  1339. yAxisIndex: 0,
  1340. value: jxssdl,
  1341. },
  1342. {
  1343. title: "性能损失电量",
  1344. yAxisIndex: 0,
  1345. value: xnssdl,
  1346. },
  1347. {
  1348. title: "限电损失电量",
  1349. yAxisIndex: 0,
  1350. value: xdssdl,
  1351. },
  1352. {
  1353. title: "受累损失电量",
  1354. yAxisIndex: 0,
  1355. value: slssdl,
  1356. }
  1357. );
  1358. this.analyisDialog = analyis;
  1359. },
  1360. },
  1361. watch: {
  1362. screenHeight(val) {
  1363. this.screenHeight = val;
  1364. if (val > 1100) {
  1365. this.echartsHeight = "58vh";
  1366. } else {
  1367. this.echartsHeight = "55vh";
  1368. }
  1369. },
  1370. },
  1371. };
  1372. </script>
  1373. <style lang="less" scoped>
  1374. .pagination-class {
  1375. text-align: right;
  1376. }
  1377. .parcel-box {
  1378. padding: 0 15px;
  1379. }
  1380. /deep/ .s-tb-th {
  1381. height: 50px;
  1382. }
  1383. .title {
  1384. display: flex;
  1385. flex-direction: row;
  1386. align-items: center;
  1387. margin-top: 10px;
  1388. margin-bottom: 10px;
  1389. .tabCut {
  1390. display: inline-block;
  1391. margin: 0 10px;
  1392. div {
  1393. display: inline-block;
  1394. width: 60px;
  1395. height: 27px;
  1396. border: 1px solid #274934;
  1397. text-align: center;
  1398. line-height: 25px;
  1399. cursor: pointer;
  1400. }
  1401. div:nth-child(1) {
  1402. border-radius: 13px 0px 0px 13px;
  1403. border-right-width: 0;
  1404. }
  1405. div:nth-child(2) {
  1406. border-radius: 0px 13px 13px 0px;
  1407. }
  1408. .active {
  1409. background-color: rgba(5, 187, 76, 0.9);
  1410. color: #fff;
  1411. }
  1412. .disabled {
  1413. cursor: not-allowed;
  1414. pointer-events: none;
  1415. }
  1416. }
  1417. .tabCut1 {
  1418. display: inline-block;
  1419. margin: 0 10px;
  1420. div {
  1421. display: inline-block;
  1422. width: 60px;
  1423. height: 27px;
  1424. border: 1px solid #274934;
  1425. text-align: center;
  1426. line-height: 25px;
  1427. cursor: pointer;
  1428. }
  1429. div:nth-child(1) {
  1430. border-radius: 13px 0px 0px 13px;
  1431. }
  1432. div:nth-child(3) {
  1433. border-radius: 0px 13px 13px 0px;
  1434. }
  1435. .active {
  1436. background-color: rgba(5, 187, 76, 0.9);
  1437. color: #fff;
  1438. }
  1439. }
  1440. .station {
  1441. display: flex;
  1442. flex-direction: row;
  1443. align-items: center;
  1444. font-size: 14px;
  1445. font-family: Microsoft YaHei;
  1446. font-weight: 400;
  1447. color: #b3b3b3;
  1448. margin-right: 10px;
  1449. }
  1450. .search-input {
  1451. margin-left: 10px;
  1452. }
  1453. .but {
  1454. display: flex;
  1455. flex-direction: row;
  1456. align-content: center;
  1457. margin-left: 20px;
  1458. }
  1459. .buttons {
  1460. background-color: rgba(5, 187, 76, 0.2);
  1461. border: 1px solid #3b6c53;
  1462. color: #b3b3b3;
  1463. font-size: 14px;
  1464. &:hover {
  1465. background-color: rgba(5, 187, 76, 0.5);
  1466. color: #ffffff;
  1467. }
  1468. }
  1469. }
  1470. .bodys {
  1471. width: 100%;
  1472. background-color: rgba(0, 0, 0, 0.45);
  1473. padding: 5px;
  1474. padding-bottom: 33px;
  1475. border-radius: 5px;
  1476. }
  1477. .line {
  1478. display: flex;
  1479. flex-direction: row;
  1480. align-items: center;
  1481. justify-content: space-between;
  1482. width: 100%;
  1483. padding-bottom: 5px;
  1484. .leftContent {
  1485. width: 242px;
  1486. height: 41px;
  1487. display: flex;
  1488. align-items: center;
  1489. background: url("../../../../assets/imgs/title_left_bg.png");
  1490. span {
  1491. font-size: 16px;
  1492. font-family: Microsoft YaHei;
  1493. font-weight: 400;
  1494. color: #ffffff;
  1495. margin-left: 25px;
  1496. }
  1497. }
  1498. .rightContent {
  1499. width: 212px;
  1500. height: 28px;
  1501. margin-top: 13px;
  1502. background: url("../../../../assets/imgs/title_right_bg.png");
  1503. }
  1504. }
  1505. .economicTable {
  1506. width: 100%;
  1507. }
  1508. .echarts {
  1509. width: 100%;
  1510. height: 26vh;
  1511. display: flex;
  1512. flex-direction: row;
  1513. align-items: center;
  1514. .chart-name {
  1515. display: flex;
  1516. align-items: center;
  1517. padding-left: 20px;
  1518. position: relative;
  1519. height: 39px;
  1520. width: 98%;
  1521. margin-left: 1%;
  1522. border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  1523. font-size: 16px;
  1524. font-family: Microsoft YaHei;
  1525. font-weight: 400;
  1526. color: #ffffff;
  1527. }
  1528. .pie-echarts {
  1529. width: 30%;
  1530. height: 100%;
  1531. background: rgba(0, 0, 0, 0.45);
  1532. border-radius: 5px;
  1533. }
  1534. .bar-echarts {
  1535. width: 69%;
  1536. margin-left: 1%;
  1537. height: 100%;
  1538. background: rgba(0, 0, 0, 0.45);
  1539. border-radius: 5px;
  1540. }
  1541. }
  1542. .point {
  1543. width: 6px;
  1544. height: 1px;
  1545. background-color: #ffffff;
  1546. position: absolute;
  1547. &.point-left {
  1548. left: 0;
  1549. }
  1550. &.point-right {
  1551. right: 0;
  1552. }
  1553. &.top {
  1554. top: -1px;
  1555. }
  1556. &.bottom {
  1557. bottom: -1px;
  1558. }
  1559. }
  1560. /*去除表头全选框*/
  1561. ::v-deep .el-table__header-wrapper .el-checkbox {
  1562. display: none;
  1563. }
  1564. ::v-deep .el-table__body-wrapper .el-checkbox {
  1565. .el-checkbox__input {
  1566. display: block;
  1567. }
  1568. }
  1569. </style>