PerformanceList.vue 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343
  1. <template>
  2. <el-container>
  3. <!-- <el-header>
  4. <el-row>
  5. <el-col :span="24">
  6. <el-card style="height: 30px">
  7. <div class="grid-content bg-purple-dark">
  8. <span>电量绩效榜</span>
  9. </div>
  10. </el-card>
  11. </el-col>
  12. </el-row>
  13. </el-header> -->
  14. <el-main>
  15. <el-card>
  16. <el-form :inline="true" class="demo-form-inline">
  17. <el-row :gutter="1">
  18. <el-form-item label="风场">
  19. <el-select v-model="fc" clearable placeholder="请选择" @change="query_xml()">
  20. <el-option
  21. v-for="item in wpIdslist"
  22. :key="item.id"
  23. :label="item.name"
  24. :value="item.id"
  25. >
  26. </el-option>
  27. </el-select>
  28. </el-form-item>
  29. <el-form-item label="项目">
  30. <el-select v-model="pj" clearable placeholder="请选择" @change="query_xl()">
  31. <el-option
  32. v-for="item in projectlist"
  33. :key="item.id"
  34. :label="item.name"
  35. :value="item.id"
  36. >
  37. </el-option>
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="线路">
  41. <el-select v-model="xl" clearable placeholder="请选择">
  42. <el-option
  43. v-for="item in linelist"
  44. :key="item.id"
  45. :label="item.name"
  46. :value="item.id"
  47. >
  48. </el-option>
  49. </el-select>
  50. </el-form-item>
  51. <el-form-item label="开始时间">
  52. <el-date-picker
  53. v-model="beginDate"
  54. value-format="yyyy-MM-dd"
  55. type="date"
  56. placeholder="选择日期"
  57. >
  58. </el-date-picker>
  59. </el-form-item>
  60. <el-form-item label="结束时间">
  61. <el-date-picker
  62. v-model="endDate"
  63. value-format="yyyy-MM-dd"
  64. type="date"
  65. placeholder="选择日期"
  66. >
  67. </el-date-picker>
  68. </el-form-item>
  69. <el-form-item>
  70. <el-button type="primary" @click="queryPowerAll" :plain="true"
  71. >查询</el-button
  72. >
  73. </el-form-item>
  74. <el-form-item>
  75. <el-button type="primary" @click="queryApDataMx"
  76. >明细信息</el-button
  77. >
  78. </el-form-item>
  79. <el-form-item>
  80. <el-button type="primary" @click="toExcel">导出</el-button>
  81. </el-form-item>
  82. </el-row>
  83. </el-form>
  84. <el-tabs
  85. v-model="activeName"
  86. type="card"
  87. @tab-click="handleClick"
  88. style="height: 100%; width: 100%"
  89. >
  90. <el-tab-pane label="风场" name="first" id="fc">
  91. <el-row
  92. style="
  93. width: 100%;
  94. height: 100%;
  95. display: flex;
  96. justify-content: space-between;
  97. "
  98. >
  99. <el-card
  100. shadow="always"
  101. ref="fc_zzt_card"
  102. :style="styleObject_fc"
  103. style="
  104. width: 45%;
  105. display: table-cell;
  106. vertical-align: middle;
  107. "
  108. >
  109. <div
  110. id="histogram_fc"
  111. ref="fc_zzt"
  112. style="width: 800px"
  113. ></div>
  114. </el-card>
  115. <el-card
  116. shadow="always"
  117. style="width: 48%"
  118. :style="styleObject_fc"
  119. id="moban"
  120. >
  121. <el-table
  122. id="fc_table"
  123. :data="fc_date"
  124. style="width: 100%; font-size: 1px"
  125. :max-height="tableHeight_fc"
  126. >
  127. <el-table-column label="项目列表">
  128. <el-table-column fixed type="index" width="40">
  129. </el-table-column>
  130. <el-table-column
  131. prop="wtName"
  132. sortable
  133. label="名称"
  134. width="103"
  135. >
  136. </el-table-column>
  137. <el-table-column
  138. sortable
  139. :formatter="filter_total"
  140. prop="total"
  141. label="理论发电"
  142. width="83"
  143. >
  144. </el-table-column>
  145. <el-table-column
  146. sortable
  147. :formatter="filter_daydl2"
  148. prop="daydl2"
  149. label="SCADA"
  150. width="81"
  151. >
  152. </el-table-column>
  153. <el-table-column
  154. sortable
  155. :formatter="filter_dayspeed"
  156. prop="dayspeed"
  157. label="风速"
  158. width="63"
  159. >
  160. </el-table-column>
  161. <el-table-column
  162. sortable
  163. :formatter="filter_daynhgzssdl"
  164. prop="daynhgzssdl"
  165. label="非计划检修"
  166. width="103"
  167. >
  168. </el-table-column>
  169. <el-table-column
  170. sortable
  171. :formatter="filter_daynhwhssdl"
  172. prop="daynhwhssdl"
  173. label="计划检修"
  174. width="85"
  175. >
  176. </el-table-column>
  177. <el-table-column
  178. sortable
  179. :formatter="filter_daynhcfdl"
  180. prop="daynhcfdl"
  181. label="受累"
  182. width="75"
  183. >
  184. </el-table-column>
  185. <el-table-column
  186. sortable
  187. :formatter="filter_daynhxdssdl"
  188. prop="daynhxdssdl"
  189. label="限电"
  190. width="63"
  191. >
  192. </el-table-column>
  193. <el-table-column
  194. sortable
  195. :formatter="filter_daynhxdssdl"
  196. prop="daynhxdssdl"
  197. label="性能"
  198. width="63"
  199. >
  200. </el-table-column>
  201. <el-table-column
  202. sortable
  203. :formatter="filter_lyl"
  204. prop="lyl"
  205. label="利用率%"
  206. width="90"
  207. >
  208. </el-table-column>
  209. </el-table-column>
  210. </el-table>
  211. </el-card>
  212. </el-row>
  213. </el-tab-pane>
  214. <el-tab-pane label="项目" name="second" id="xm">
  215. <el-row
  216. style="
  217. width: 100%;
  218. height: 100%;
  219. display: flex;
  220. justify-content: space-between;
  221. "
  222. >
  223. <el-card
  224. shadow="always"
  225. :style="styleObject_pj"
  226. style="
  227. width: 48%;
  228. display: table-cell;
  229. vertical-align: middle;
  230. "
  231. >
  232. <div
  233. id="histogram_xm"
  234. style="width: 800px; height: 400px; margin: auto"
  235. ></div>
  236. </el-card>
  237. <el-card
  238. shadow="always"
  239. :style="styleObject_pj"
  240. style="width: 48%"
  241. id="moban"
  242. >
  243. <el-table
  244. id="pj_table"
  245. :data="pj_date"
  246. style="width: 100%; font-size: 1px"
  247. :max-height="tableHeight_pj"
  248. >
  249. <el-table-column label="项目列表">
  250. <el-table-column fixed type="index" width="40">
  251. </el-table-column>
  252. <el-table-column
  253. prop="wtName"
  254. sortable
  255. label="名称"
  256. width="103"
  257. >
  258. </el-table-column>
  259. <el-table-column
  260. sortable
  261. :formatter="filter_total"
  262. prop="total"
  263. label="理论发电"
  264. width="83"
  265. >
  266. </el-table-column>
  267. <el-table-column
  268. sortable
  269. :formatter="filter_daydl2"
  270. prop="daydl2"
  271. label="SCADA"
  272. width="81"
  273. >
  274. </el-table-column>
  275. <el-table-column
  276. sortable
  277. :formatter="filter_dayspeed"
  278. prop="dayspeed"
  279. label="风速"
  280. width="63"
  281. >
  282. </el-table-column>
  283. <el-table-column
  284. sortable
  285. :formatter="filter_daynhgzssdl"
  286. prop="daynhgzssdl"
  287. label="非计划检修"
  288. width="103"
  289. >
  290. </el-table-column>
  291. <el-table-column
  292. sortable
  293. :formatter="filter_daynhwhssdl"
  294. prop="daynhwhssdl"
  295. label="计划检修"
  296. width="85"
  297. >
  298. </el-table-column>
  299. <el-table-column
  300. sortable
  301. :formatter="filter_daynhcfdl"
  302. prop="daynhcfdl"
  303. label="受累"
  304. width="75"
  305. >
  306. </el-table-column>
  307. <el-table-column
  308. sortable
  309. :formatter="filter_daynhxdssdl"
  310. prop="daynhxdssdl"
  311. label="限电"
  312. width="63"
  313. >
  314. </el-table-column>
  315. <el-table-column
  316. sortable
  317. :formatter="filter_daynhxdssdl"
  318. prop="daynhqfdl"
  319. label="性能"
  320. width="63"
  321. >
  322. </el-table-column>
  323. <el-table-column
  324. sortable
  325. :formatter="filter_lyl"
  326. prop="lyl"
  327. label="利用率%"
  328. width="90"
  329. >
  330. </el-table-column>
  331. </el-table-column>
  332. </el-table>
  333. </el-card>
  334. </el-row>
  335. </el-tab-pane>
  336. <el-tab-pane label="集电线路" name="jdxl" id="jdxl">
  337. <el-row
  338. style="
  339. width: 100%;
  340. height: 100%;
  341. display: flex;
  342. justify-content: space-between;
  343. "
  344. >
  345. <el-card
  346. shadow="always"
  347. :style="styleObject_xl"
  348. style="width: 48%; display: table-cell; vertical-align: middle"
  349. >
  350. <div
  351. id="histogram_jdxl"
  352. style="width: 800px; margin: auto"
  353. ></div>
  354. </el-card>
  355. <el-card
  356. shadow="always"
  357. style="width: 48%"
  358. :style="styleObject_xl"
  359. id="moban"
  360. >
  361. <el-table
  362. id="xl_table"
  363. :data="xl_date"
  364. style="width: 100%; font-size: 1px;margin-bottom:10px"
  365. :max-height="tableHeight_xl"
  366. >
  367. <el-table-column label="项目列表">
  368. <el-table-column fixed type="index" width="40">
  369. </el-table-column>
  370. <el-table-column
  371. prop="wtName"
  372. sortable
  373. label="名称"
  374. width="103"
  375. >
  376. </el-table-column>
  377. <el-table-column
  378. sortable
  379. :formatter="filter_total"
  380. prop="total"
  381. label="理论发电"
  382. width="83"
  383. >
  384. </el-table-column>
  385. <el-table-column
  386. sortable
  387. :formatter="filter_daydl2"
  388. prop="daydl2"
  389. label="SCADA"
  390. width="81"
  391. >
  392. </el-table-column>
  393. <el-table-column
  394. sortable
  395. :formatter="filter_dayspeed"
  396. prop="dayspeed"
  397. label="风速"
  398. width="63"
  399. >
  400. </el-table-column>
  401. <el-table-column
  402. sortable
  403. :formatter="filter_daynhgzssdl"
  404. prop="daynhgzssdl"
  405. label="非计划检修"
  406. width="103"
  407. >
  408. </el-table-column>
  409. <el-table-column
  410. sortable
  411. :formatter="filter_daynhwhssdl"
  412. prop="daynhwhssdl"
  413. label="计划检修"
  414. width="85"
  415. >
  416. </el-table-column>
  417. <el-table-column
  418. sortable
  419. :formatter="filter_daynhcfdl"
  420. prop="daynhcfdl"
  421. label="受累"
  422. width="75"
  423. >
  424. </el-table-column>
  425. <el-table-column
  426. sortable
  427. :formatter="filter_daynhxdssdl"
  428. prop="daynhxdssdl"
  429. label="限电"
  430. width="63"
  431. >
  432. </el-table-column>
  433. <el-table-column
  434. sortable
  435. :formatter="filter_daynhxdssdl"
  436. prop="daynhxdssdl"
  437. label="性能"
  438. width="63"
  439. >
  440. </el-table-column>
  441. <el-table-column
  442. sortable
  443. :formatter="filter_lyl"
  444. prop="lyl"
  445. label="利用率%"
  446. width="90"
  447. >
  448. </el-table-column>
  449. </el-table-column>
  450. </el-table>
  451. </el-card>
  452. </el-row>
  453. </el-tab-pane>
  454. </el-tabs>
  455. </el-card>
  456. </el-main>
  457. </el-container>
  458. </template>
  459. <script>
  460. import * as echarts from "echarts";
  461. import formateDate from "@/utils/date";
  462. import formateDate1 from "@/utils/date_1";
  463. import excelHelper from "@/utils/excelHelper";
  464. export default {
  465. data() {
  466. return {
  467. len:10,
  468. fc:"",
  469. pj:"",
  470. xl:"",
  471. autoHeight_fc: 400,
  472. autoHeight_pj: 800,
  473. autoHeight_xl: 1200,
  474. tableHeight_fc:460,
  475. tableHeight_pj:860,
  476. tableHeight_xl:1220,
  477. queryAll_table_lyl:[],
  478. wpIdslist: {
  479. name:"",
  480. id:"",
  481. },
  482. projectlist:{
  483. name:"",
  484. id:"",
  485. },
  486. linelist:{
  487. name:"",
  488. id:"",
  489. },
  490. fc_date: [],
  491. pj_date: [],
  492. xl_date: [],
  493. beginDate: "",
  494. endDate: "",
  495. activeName: "first",
  496. tableid: "fc",
  497. styleObject_fc: {
  498. height: '460px'
  499. },
  500. styleObject_pj: {
  501. height: '860px'
  502. },
  503. styleObject_xl: {
  504. height: '1220px'
  505. },
  506. linechar_data:{
  507. dayspeed:[],
  508. daydl2:[],
  509. daynhgzssdl:[],
  510. daynhcfdl:[],
  511. daynhqfdl:[],
  512. daynhxdssdl:[],
  513. lyl:[],
  514. wtName:[],
  515. total:[],
  516. daynhwhssdl:[]
  517. }
  518. };
  519. },
  520. methods: {
  521. created(){
  522. },
  523. onSubmit() {},
  524. query_wpid() {
  525. var newData = new Date();
  526. this.beginDate = formateDate1((newData.getTime()-86400000)/1000);
  527. this.endDate = formateDate1(newData.getTime()/1000);
  528. this.$http.get("powercompare/windfarmAjax?").then((res) => {
  529. this.wpIdslist = res.data.data;
  530. });
  531. },
  532. query_xml(){
  533. this.pj = "";
  534. this.xl = "";
  535. this.$http.get("powercompare/projectAjax?wpIds=" + this.fc).then((res) => {
  536. this.projectlist = res.data.data;
  537. });
  538. },
  539. query_xl(){
  540. this.xl = "";
  541. this.$http.get("powercompare/lineAjax?pjIds=" + this.pj).then((res) => {
  542. this.linelist = res.data.data;
  543. });
  544. },
  545. handleClick(tab) {
  546. if (tab.name === "first") {
  547. this.tableid = "fc";
  548. this.query();
  549. } else if (tab.name === "second") {
  550. this.tableid = "pj";
  551. this.query();
  552. } else if (tab.name === "jdxl") {
  553. this.tableid = "xl";
  554. this.query();
  555. }
  556. },
  557. deleteRow(index, rows) {
  558. rows.splice(index, 1);
  559. },
  560. query() {
  561. Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
  562. Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
  563. Object.assign(this.$data.autoHeight_pj, this.$options.data().autoHeight_pj);
  564. Object.assign(this.$data.styleObject_pj, this.$options.data().styleObject_pj);
  565. Object.assign(this.$data.autoHeight_xl, this.$options.data().autoHeight_xl);
  566. Object.assign(this.$data.styleObject_xl, this.$options.data().styleObject_xl);
  567. Object.assign(this.$data.queryAll_table_lyl, this.$options.data().queryAll_table_lyl);
  568. this.styleObject_fc.height = '460px';
  569. this.autoHeight_fc = '400px';
  570. this.styleObject_pj.height = '860px';
  571. this.autoHeight_pj = '800px';
  572. this.styleObject_xl.height = '1260px';
  573. this.autoHeight_xl = '1200px';
  574. this.fc_date = [];
  575. this.xl_date = [];
  576. this.pj_date = [];
  577. //表格数据获取
  578. this.$http
  579. .get(
  580. "powercompare/powerAjaxAll?wpIds=" +
  581. this.fc +
  582. "&beginDate=" +
  583. this.beginDate +
  584. "&endDate=" +
  585. this.endDate +
  586. "&queryType=" +
  587. this.tableid +
  588. "&sortName=" +
  589. this.fc +
  590. "&sortOrder=" +
  591. "Asc"
  592. )
  593. .then((res) => {
  594. let that = this;
  595. Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
  596. this.linechar_data.dayspeed=[];
  597. this.linechar_data.daydl2=[];
  598. this.linechar_data.daynhgzssdl=[];
  599. this.linechar_data.daynhcfdl=[];
  600. this.linechar_data.daynhqfdl=[];
  601. this.linechar_data.daynhxdssdl=[];
  602. this.linechar_data.lyl=[];
  603. this.linechar_data.wtName=[];
  604. this.linechar_data.daynhwhssdl=[];
  605. let queryAll_table = res.data.data.list;
  606. let queryAll_table_lyl = res.data.data.lyl;
  607. for(let i = 0;i < Object.keys(queryAll_table).length;i++){
  608. if(queryAll_table[i].wtName!="合计"){
  609. that.linechar_data.dayspeed.push(queryAll_table[i].dayspeed.toFixed(2));
  610. that.linechar_data.daydl2.push(queryAll_table[i].daydl2.toFixed(2));
  611. that.linechar_data.daynhgzssdl.push(queryAll_table[i].daynhgzssdl.toFixed(2));
  612. that.linechar_data.daynhcfdl.push(queryAll_table[i].daynhcfdl.toFixed(2));
  613. that.linechar_data.daynhqfdl.push(queryAll_table[i].daynhqfdl.toFixed(2));
  614. that.linechar_data.daynhxdssdl.push(queryAll_table[i].daynhxdssdl.toFixed(2));
  615. that.linechar_data.lyl.push(queryAll_table[i].lyl.toFixed(2));
  616. that.linechar_data.wtName.push(queryAll_table[i].wtName);
  617. that.linechar_data.total.push(queryAll_table[i].total.toFixed(2));
  618. that.linechar_data.daynhwhssdl.push(queryAll_table[i].daynhwhssdl.toFixed(2));
  619. }
  620. }
  621. if (this.tableid === "fc") {
  622. that.fc_date = queryAll_table;
  623. that.drawhistogram_fc(this.linechar_data,queryAll_table_lyl);
  624. } else if (this.tableid === "pj") {
  625. that.pj_date = queryAll_table;
  626. that.drawhistogram_pj(this.linechar_data,queryAll_table_lyl);
  627. } else if (this.tableid === "xl") {
  628. that.xl_date = queryAll_table;
  629. that.drawhistogram_xl(this.linechar_data,queryAll_table_lyl);
  630. }
  631. });
  632. },
  633. async queryPowerAll() {
  634. Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
  635. Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
  636. Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
  637. let that = this;
  638. if (
  639. this.beginDate == "" ||
  640. this.endDate == "" ||
  641. this.beginDate == undefined ||
  642. this.endDate == undefined
  643. ) {
  644. this.query_wpid();
  645. that.$message.error("请选时间!");
  646. return;
  647. }
  648. this.fc_date = [];
  649. this.xl_date = [];
  650. this.pj_date = [];
  651. if (
  652. that.fc == "" ||
  653. that.fc == null ||
  654. that.fc == undefined
  655. ) {
  656. that.query();
  657. } else {
  658. // this.$http
  659. // .get(
  660. // "powercompare/queryPower?wpIds=" +
  661. // this.fc +
  662. // "&pjIds=" +
  663. // this.pj +
  664. // "&lineIds=" +
  665. // this.xl +
  666. // "&beginDate=" +
  667. // this.beginDate +
  668. // "&endDate=" +
  669. // this.endDate
  670. // )
  671. // .then((res) => {
  672. // let that = this;
  673. // let queryAll = res.data.data;
  674. // this.len = Object.keys(queryAll.names).length;
  675. // if(this.len <= 10){that.autoHeight_fc = 575; that.styleObject_fc.height = '700px' }
  676. // else if(this.len > 10 && this.len <=20){that.autoHeight_fc = 775; that.styleObject_fc.height = '800px';that.autoHeight_pj = 775; that.styleObject_pj.height = '800px';that.autoHeight_xl = 775; that.styleObject_xl.height = '800px' }
  677. // else if(this.len > 20 && this.len <=30){that.autoHeight_fc = 975; that.styleObject_fc.height = '1000px';that.autoHeight_pj = 975; that.styleObject_pj.height = '1000px';that.autoHeight_xl = 975; that.styleObject_xl.height = '1000px' }
  678. // else if(this.len > 30 && this.len <=40){that.autoHeight_fc = 1175; that.styleObject_fc.height = '1200px';that.autoHeight_pj = 1175; that.styleObject_pj.height = '1200px';that.autoHeight_xl = 1175; that.styleObject_xl.height = '1200px' }
  679. // else if(this.len > 40 && this.len <=50){that.autoHeight_fc = 1375; that.styleObject_fc.height = '1400px';that.autoHeight_pj = 1375; that.styleObject_pj.height = '1400px';that.autoHeight_xl = 1375; that.styleObject_xl.height = '1400px' }
  680. // else if(this.len > 50 && this.len <=60){that.autoHeight_fc = 1575; that.styleObject_fc.height = '1600px';that.autoHeight_pj = 1575; that.styleObject_pj.height = '1600px';that.autoHeight_xl = 1575; that.styleObject_xl.height = '1600px' }
  681. // else if(this.len > 60 && this.len <=70){that.autoHeight_fc = 1775; that.styleObject_fc.height = '1800px';that.autoHeight_pj = 1775; that.styleObject_pj.height = '1800px';that.autoHeight_xl = 1775; that.styleObject_xl.height = '1800px' }
  682. // else if(this.len > 70 && this.len <=80){that.autoHeight_fc = 1975; that.styleObject_fc.height = '2000px';that.autoHeight_pj = 1975; that.styleObject_pj.height = '2000px';that.autoHeight_xl = 1975; that.styleObject_xl.height = '2000px' }
  683. // else{that.autoHeight_fc = 2175; that.styleObject_fc.height = '2200px';that.autoHeight_pj = 2175; that.styleObject_pj.height = '2200px';that.autoHeight_xl = 2175; that.styleObject_xl.height = '2200px' }
  684. // this.tableHeight_fc = this.autoHeight_fc - 20;
  685. // this.tableHeight_pj = this.autoHeight_pj - 20;
  686. // this.tableHeight_xl = this.autoHeight_xl - 20;
  687. //});
  688. this.$http
  689. .get(
  690. "powercompare/powerAjax?wpIds=" +
  691. this.fc +
  692. "&pjIds=" +
  693. this.pj +
  694. "&lineIds=" +
  695. this.xl +
  696. "&beginDate=" +
  697. this.beginDate +
  698. "&endDate=" +
  699. this.endDate +
  700. "&sortName=" +
  701. this.fc +
  702. "&sortOrder=" +
  703. "Asc"
  704. )
  705. .then((res) => {
  706. let that = this;
  707. this.len = Object.keys(res.data.data.list).length;
  708. if(this.len <= 10){that.autoHeight_fc = 575; that.styleObject_fc.height = '700px' }
  709. else if(this.len > 10 && this.len <=20){that.autoHeight_fc = 775; that.styleObject_fc.height = '800px';that.autoHeight_pj = 775; that.styleObject_pj.height = '800px';that.autoHeight_xl = 775; that.styleObject_xl.height = '800px' }
  710. else if(this.len > 20 && this.len <=30){that.autoHeight_fc = 975; that.styleObject_fc.height = '1000px';that.autoHeight_pj = 975; that.styleObject_pj.height = '1000px';that.autoHeight_xl = 975; that.styleObject_xl.height = '1000px' }
  711. else if(this.len > 30 && this.len <=40){that.autoHeight_fc = 1175; that.styleObject_fc.height = '1200px';that.autoHeight_pj = 1175; that.styleObject_pj.height = '1200px';that.autoHeight_xl = 1175; that.styleObject_xl.height = '1200px' }
  712. else if(this.len > 40 && this.len <=50){that.autoHeight_fc = 1375; that.styleObject_fc.height = '1400px';that.autoHeight_pj = 1375; that.styleObject_pj.height = '1400px';that.autoHeight_xl = 1375; that.styleObject_xl.height = '1400px' }
  713. else if(this.len > 50 && this.len <=60){that.autoHeight_fc = 1575; that.styleObject_fc.height = '1600px';that.autoHeight_pj = 1575; that.styleObject_pj.height = '1600px';that.autoHeight_xl = 1575; that.styleObject_xl.height = '1600px' }
  714. else if(this.len > 60 && this.len <=70){that.autoHeight_fc = 1775; that.styleObject_fc.height = '1800px';that.autoHeight_pj = 1775; that.styleObject_pj.height = '1800px';that.autoHeight_xl = 1775; that.styleObject_xl.height = '1800px' }
  715. else if(this.len > 70 && this.len <=80){that.autoHeight_fc = 1975; that.styleObject_fc.height = '2000px';that.autoHeight_pj = 1975; that.styleObject_pj.height = '2000px';that.autoHeight_xl = 1975; that.styleObject_xl.height = '2000px' }
  716. else{that.autoHeight_fc = 2175; that.styleObject_fc.height = '2200px';that.autoHeight_pj = 2175; that.styleObject_pj.height = '2200px';that.autoHeight_xl = 2175; that.styleObject_xl.height = '2200px' }
  717. this.tableHeight_fc = this.autoHeight_fc - 20;
  718. this.tableHeight_pj = this.autoHeight_pj - 20;
  719. this.tableHeight_xl = this.autoHeight_xl - 20;
  720. Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
  721. this.linechar_data.dayspeed=[];
  722. this.linechar_data.daydl2=[];
  723. this.linechar_data.daynhgzssdl=[];
  724. this.linechar_data.daynhcfdl=[];
  725. this.linechar_data.daynhqfdl=[];
  726. this.linechar_data.daynhxdssdl=[];
  727. this.linechar_data.lyl=[];
  728. this.linechar_data.wtName=[];
  729. this.linechar_data.daynhwhssdl=[];
  730. let queryAll_table = res.data.data.list;
  731. let queryAll_table_lyl = res.data.data.lyl;
  732. //this.query_lyl(queryAll_table);
  733. for(let i = 0;i < Object.keys(queryAll_table).length;i++){
  734. if(queryAll_table[i].wtName!="合计"){
  735. that.linechar_data.dayspeed.push(queryAll_table[i].dayspeed.toFixed(2));
  736. that.linechar_data.daydl2.push(queryAll_table[i].daydl2.toFixed(2));
  737. that.linechar_data.daynhgzssdl.push(queryAll_table[i].daynhgzssdl.toFixed(2));
  738. that.linechar_data.daynhcfdl.push(queryAll_table[i].daynhcfdl.toFixed(2));
  739. that.linechar_data.daynhqfdl.push(queryAll_table[i].daynhqfdl.toFixed(2));
  740. that.linechar_data.daynhxdssdl.push(queryAll_table[i].daynhxdssdl.toFixed(2));
  741. that.linechar_data.lyl.push(queryAll_table[i].lyl.toFixed(2));
  742. that.linechar_data.wtName.push(queryAll_table[i].wtName);
  743. that.linechar_data.total.push(queryAll_table[i].total.toFixed(2));
  744. that.linechar_data.daynhwhssdl.push(queryAll_table[i].daynhwhssdl.toFixed(2));
  745. }
  746. }
  747. if (this.tableid === "fc") {
  748. that.fc_date = queryAll_table;
  749. that.drawhistogram_fc(this.linechar_data,queryAll_table_lyl);
  750. } else if (this.tableid === "pj") {
  751. that.pj_date = queryAll_table;
  752. that.drawhistogram_pj(this.linechar_data,queryAll_table_lyl);
  753. } else if (this.tableid === "xl") {
  754. that.xl_date = queryAll_table;
  755. that.drawhistogram_xl(this.linechar_data,queryAll_table_lyl);
  756. }
  757. });
  758. }
  759. },
  760. checkwindfarm() {
  761. if (this.fc == "") {
  762. this.$message.error("请选择风场!");
  763. return;
  764. }
  765. },
  766. checkproject() {
  767. if (this.fc == "") {
  768. this.$message.error("请选择项目!");
  769. return;
  770. }
  771. if (new Date(this.timedate) == null) {
  772. this.$message.error("请选择时间");
  773. return;
  774. }
  775. },
  776. checktime() {
  777. if (new Date(this.timedate) == null) {
  778. this.$message.error("请选择时间");
  779. return;
  780. }
  781. },
  782. queryApDataMx() {
  783. this.$router.push({ path: "/new_performanceList_fan" ,
  784. query: {
  785. beginDate : this.beginDate,
  786. endDate : this.endDate
  787. },});
  788. },
  789. filter_total(cellValue) {
  790. return parseFloat(cellValue.total).toFixed(2);
  791. },
  792. filter_daydl2(cellValue) {
  793. return parseFloat(cellValue.daydl2).toFixed(2);
  794. },
  795. filter_dayspeed(cellValue) {
  796. return parseFloat(cellValue.dayspeed).toFixed(2);
  797. },
  798. filter_daynhwhssdl(cellValue) {
  799. return parseFloat(cellValue.daynhwhssdl).toFixed(2);
  800. },
  801. filter_daynhcfdl(cellValue) {
  802. return parseFloat(cellValue.daynhcfdl).toFixed(2);
  803. },
  804. filter_daynhxdssdl(cellValue) {
  805. return parseFloat(cellValue.daynhqfdl).toFixed(2);
  806. },
  807. filter_lyl(cellValue) {
  808. return parseFloat(cellValue.lyl).toFixed(2);
  809. },
  810. filter_daynhgzssdl(cellValue) {
  811. return parseFloat(cellValue.daynhgzssdl).toFixed(2);
  812. },
  813. toExcel() {
  814. let that = this;
  815. if (this.tableid === "fc") {
  816. excelHelper.exportExcel("fc_table", "fc数据", ".xls", true);
  817. } else if (this.tableid === "pj") {
  818. excelHelper.exportExcel("pj_table", "pj数据", ".xls", true);
  819. } else if (this.tableid === "xl") {
  820. excelHelper.exportExcel("xl_table", "xl数据", ".xls", true);
  821. }
  822. },
  823. drawhistogram_fc(date,date2) {
  824. this.chartLine = echarts.init(document.getElementById("histogram_fc"));
  825. this.chartLine.clear();
  826. this.chartLine.resize({ height: this.autoHeight_fc });
  827. var option;
  828. option = {
  829. color: [
  830. "#64E572",
  831. "#24CBE5",
  832. "#DDDF00",
  833. "#ED561B",
  834. "#50B432",
  835. "#058DC7",
  836. ],
  837. title: {
  838. text: "风机绩效榜单",
  839. left: 300,
  840. top: -5,
  841. textStyle: {
  842. fontSize: 13,
  843. },
  844. },
  845. tooltip: {
  846. trigger: "axis",
  847. axisPointer: {
  848. // Use axis to trigger tooltip
  849. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  850. },
  851. },
  852. legend: {
  853. left: 15,
  854. top: 30,
  855. data: [
  856. "实发电量",
  857. "计划检修损失",
  858. "非计划检修损失",
  859. "限电损失",
  860. "受累损失",
  861. "性能损失",
  862. "-",
  863. ],
  864. },
  865. grid: {
  866. left: "3%",
  867. right: "4%",
  868. bottom: "3%",
  869. containLabel: true,
  870. },
  871. xAxis: {
  872. type: "value",
  873. max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
  874. },
  875. yAxis: {
  876. type: "category",
  877. data: date.wtName,
  878. },
  879. series: [
  880. {
  881. name: "实发电量",
  882. type: "bar",
  883. stack: "total",
  884. label: {
  885. show: true,
  886. },
  887. emphasis: {
  888. focus: "series",
  889. },
  890. data: date.daydl2,
  891. },
  892. {
  893. name: "计划检修损失",
  894. type: "bar",
  895. stack: "total",
  896. label: {
  897. show: true,
  898. },
  899. emphasis: {
  900. focus: "series",
  901. },
  902. data: date.daynhwhssdl,
  903. },
  904. {
  905. name: "非计划检修损失",
  906. type: "bar",
  907. stack: "total",
  908. label: {
  909. show: true,
  910. },
  911. emphasis: {
  912. focus: "series",
  913. },
  914. data: date.daynhgzssdl,
  915. },
  916. {
  917. name: "限电损失",
  918. type: "bar",
  919. stack: "total",
  920. label: {
  921. show: true,
  922. },
  923. emphasis: {
  924. focus: "series",
  925. },
  926. data: date.daynhxdssdl,
  927. },
  928. {
  929. name: "受累损失",
  930. type: "bar",
  931. stack: "total",
  932. label: {
  933. show: true,
  934. },
  935. emphasis: {
  936. focus: "series",
  937. },
  938. data: date.daynhcfdl,
  939. },
  940. {
  941. name: "性能损失",
  942. type: "bar",
  943. stack: "total",
  944. label: {
  945. show: true,
  946. },
  947. emphasis: {
  948. focus: "series",
  949. },
  950. data: date.daynhqfdl,
  951. },
  952. //曲线
  953. {
  954. name: "-",
  955. data: date.total,
  956. markPoint: {
  957. data: date2,
  958. },
  959. type: "line",
  960. symbol: "circle",
  961. symbolSize: 20,
  962. lineStyle: {
  963. color: "#5470C6",
  964. width: 4,
  965. type: "dashed",
  966. },
  967. itemStyle: {
  968. borderWidth: 3,
  969. borderColor: "#EE6666",
  970. color: "yellow",
  971. },
  972. },
  973. ],
  974. };
  975. this.chartLine.setOption(option);
  976. },
  977. drawhistogram_pj(date,date2) {
  978. this.chartLine = echarts.init(document.getElementById("histogram_xm"));
  979. this.chartLine.clear();
  980. this.chartLine.resize({ height: this.autoHeight_pj });
  981. var option;
  982. var option;
  983. option = {
  984. color: [
  985. "#64E572",
  986. "#24CBE5",
  987. "#DDDF00",
  988. "#ED561B",
  989. "#50B432",
  990. "#058DC7",
  991. ],
  992. title: {
  993. text: "项目绩效榜单",
  994. left: 300,
  995. top: -5,
  996. textStyle: {
  997. fontSize: 13,
  998. },
  999. },
  1000. tooltip: {
  1001. trigger: "axis",
  1002. axisPointer: {
  1003. // Use axis to trigger tooltip
  1004. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  1005. },
  1006. },
  1007. legend: {
  1008. left: 15,
  1009. top: 30,
  1010. data: [
  1011. "实发电量",
  1012. "计划检修损失",
  1013. "非计划检修损失",
  1014. "限电损失",
  1015. "受累损失",
  1016. "性能损失",
  1017. "-",
  1018. ],
  1019. },
  1020. grid: {
  1021. left: "3%",
  1022. right: "4%",
  1023. bottom: "3%",
  1024. containLabel: true,
  1025. },
  1026. xAxis: {
  1027. type: "value",
  1028. max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
  1029. },
  1030. yAxis: {
  1031. type: "category",
  1032. data: date.wtName,
  1033. },
  1034. series: [
  1035. {
  1036. name: "实发电量",
  1037. type: "bar",
  1038. stack: "total",
  1039. label: {
  1040. show: true,
  1041. },
  1042. emphasis: {
  1043. focus: "series",
  1044. },
  1045. data: date.daydl2,
  1046. },
  1047. {
  1048. name: "计划检修损失",
  1049. type: "bar",
  1050. stack: "total",
  1051. label: {
  1052. show: true,
  1053. },
  1054. emphasis: {
  1055. focus: "series",
  1056. },
  1057. data: date.daynhwhssdl,
  1058. },
  1059. {
  1060. name: "非计划检修损失",
  1061. type: "bar",
  1062. stack: "total",
  1063. label: {
  1064. show: true,
  1065. },
  1066. emphasis: {
  1067. focus: "series",
  1068. },
  1069. data: date.daynhgzssdl,
  1070. },
  1071. {
  1072. name: "限电损失",
  1073. type: "bar",
  1074. stack: "total",
  1075. label: {
  1076. show: true,
  1077. },
  1078. emphasis: {
  1079. focus: "series",
  1080. },
  1081. data: date.daynhxdssdl,
  1082. },
  1083. {
  1084. name: "受累损失",
  1085. type: "bar",
  1086. stack: "total",
  1087. label: {
  1088. show: true,
  1089. },
  1090. emphasis: {
  1091. focus: "series",
  1092. },
  1093. data: date.daynhcfdl,
  1094. },
  1095. {
  1096. name: "性能损失",
  1097. type: "bar",
  1098. stack: "total",
  1099. label: {
  1100. show: true,
  1101. },
  1102. emphasis: {
  1103. focus: "series",
  1104. },
  1105. data: date.daynhqfdl,
  1106. },
  1107. //曲线
  1108. {
  1109. name: "-",
  1110. data: date.total,
  1111. markPoint: {
  1112. data: date2,
  1113. },
  1114. type: "line",
  1115. symbol: "circle",
  1116. symbolSize: 20,
  1117. lineStyle: {
  1118. color: "#5470C6",
  1119. width: 4,
  1120. type: "dashed",
  1121. },
  1122. itemStyle: {
  1123. borderWidth: 3,
  1124. borderColor: "#EE6666",
  1125. color: "yellow",
  1126. },
  1127. },
  1128. ],
  1129. };
  1130. this.chartLine.setOption(option);
  1131. },
  1132. drawhistogram_xl(date,date2) {
  1133. this.chartLine = echarts.init(document.getElementById("histogram_jdxl"));
  1134. this.chartLine.clear();
  1135. this.chartLine.resize({ height: this.autoHeight_xl });
  1136. var option;
  1137. var option;
  1138. option = {
  1139. color: [
  1140. "#64E572",
  1141. "#24CBE5",
  1142. "#DDDF00",
  1143. "#ED561B",
  1144. "#50B432",
  1145. "#058DC7",
  1146. ],
  1147. title: {
  1148. text: "路线绩效榜单",
  1149. left: 300,
  1150. top: -5,
  1151. textStyle: {
  1152. fontSize: 13,
  1153. },
  1154. },
  1155. tooltip: {
  1156. trigger: "axis",
  1157. axisPointer: {
  1158. // Use axis to trigger tooltip
  1159. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  1160. },
  1161. },
  1162. legend: {
  1163. left: 15,
  1164. top: 30,
  1165. data: [
  1166. "实发电量",
  1167. "计划检修损失",
  1168. "非计划检修损失",
  1169. "限电损失",
  1170. "受累损失",
  1171. "性能损失",
  1172. "-",
  1173. ],
  1174. },
  1175. grid: {
  1176. left: "3%",
  1177. right: "4%",
  1178. bottom: "3%",
  1179. containLabel: true,
  1180. },
  1181. xAxis: {
  1182. type: "value",
  1183. max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
  1184. },
  1185. yAxis: {
  1186. type: "category",
  1187. data: date.wtName,
  1188. },
  1189. series: [
  1190. {
  1191. name: "实发电量",
  1192. type: "bar",
  1193. stack: "total",
  1194. label: {
  1195. show: true,
  1196. },
  1197. emphasis: {
  1198. focus: "series",
  1199. },
  1200. data: date.daydl2,
  1201. },
  1202. {
  1203. name: "计划检修损失",
  1204. type: "bar",
  1205. stack: "total",
  1206. label: {
  1207. show: true,
  1208. },
  1209. emphasis: {
  1210. focus: "series",
  1211. },
  1212. data: date.daynhwhssdl,
  1213. },
  1214. {
  1215. name: "非计划检修损失",
  1216. type: "bar",
  1217. stack: "total",
  1218. label: {
  1219. show: true,
  1220. },
  1221. emphasis: {
  1222. focus: "series",
  1223. },
  1224. data: date.daynhgzssdl,
  1225. },
  1226. {
  1227. name: "限电损失",
  1228. type: "bar",
  1229. stack: "total",
  1230. label: {
  1231. show: true,
  1232. },
  1233. emphasis: {
  1234. focus: "series",
  1235. },
  1236. data: date.daynhxdssdl,
  1237. },
  1238. {
  1239. name: "受累损失",
  1240. type: "bar",
  1241. stack: "total",
  1242. label: {
  1243. show: true,
  1244. },
  1245. emphasis: {
  1246. focus: "series",
  1247. },
  1248. data: date.daynhcfdl,
  1249. },
  1250. {
  1251. name: "性能损失",
  1252. type: "bar",
  1253. stack: "total",
  1254. label: {
  1255. show: true,
  1256. },
  1257. emphasis: {
  1258. focus: "series",
  1259. },
  1260. data: date.daynhqfdl,
  1261. },
  1262. //曲线
  1263. {
  1264. name: "-",
  1265. data: date.total,
  1266. markPoint: {
  1267. data: date2,
  1268. },
  1269. type: "line",
  1270. symbol: "circle",
  1271. symbolSize: 20,
  1272. lineStyle: {
  1273. color: "#5470C6",
  1274. width: 4,
  1275. type: "dashed",
  1276. },
  1277. itemStyle: {
  1278. borderWidth: 3,
  1279. borderColor: "#EE6666",
  1280. color: "yellow",
  1281. },
  1282. },
  1283. ],
  1284. };
  1285. this.chartLine.setOption(option);
  1286. },
  1287. },
  1288. mounted() {
  1289. this.$nextTick(() => {
  1290. //后面的50:根据需求空出的高度,自行调整
  1291. });
  1292. this.query_wpid();
  1293. this.query();
  1294. },
  1295. };
  1296. </script>
  1297. <style scoped>
  1298. .bg-purple-dark {
  1299. background: #fff;
  1300. }
  1301. .grid-content {
  1302. border-radius: 2px;
  1303. min-height: 36px;
  1304. margin-top: -15px;
  1305. }
  1306. .item {
  1307. margin-top: 10px;
  1308. margin-right: 40px;
  1309. }
  1310. .el-row {
  1311. margin: 10px;
  1312. }
  1313. </style>