performanceList.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868
  1. import * as echarts from "echarts";
  2. import excelHelper from "@utils/excelHelper";
  3. export default {
  4. data() {
  5. return {
  6. pickerOptions: {
  7. disabledDate(time) {
  8. return time.getTime() > Date.now();
  9. },
  10. },
  11. len:10,
  12. fc:"",
  13. pj:"",
  14. xl:"",
  15. autoHeight_fc: 400,
  16. autoHeight_pj: 800,
  17. autoHeight_xl: 1200,
  18. tableHeight_fc:460,
  19. tableHeight_pj:860,
  20. tableHeight_xl:1220,
  21. queryAll_table_lyl:[],
  22. wpIdslist: {
  23. name:"",
  24. id:"",
  25. },
  26. projectlist:{
  27. name:"",
  28. id:"",
  29. },
  30. linelist:{
  31. name:"",
  32. id:"",
  33. },
  34. fc_date: [],
  35. pj_date: [],
  36. xl_date: [],
  37. beginDate: "",
  38. endDate: "",
  39. activeName: "first",
  40. tableid: "fc",
  41. styleObject_fc: {
  42. height: '460px'
  43. },
  44. styleObject_pj: {
  45. height: '860px'
  46. },
  47. styleObject_xl: {
  48. height: '1220px'
  49. },
  50. linechar_data:{
  51. dayspeed:[],
  52. daydl2:[],
  53. daynhgzssdl:[],
  54. daynhcfdl:[],
  55. daynhqfdl:[],
  56. daynhxdssdl:[],
  57. lyl:[],
  58. wtName:[],
  59. total:[],
  60. daynhwhssdl:[]
  61. }
  62. };
  63. },
  64. methods: {
  65. created(){
  66. },
  67. onSubmit() {},
  68. /**
  69. * 获取风场
  70. */
  71. query_wpid() {
  72. var newData = new Date();
  73. this.beginDate = this.BASE.getBzDate(newData.getTime(),-1);
  74. this.endDate = this.BASE.getBzDate(newData.getTime(),0);
  75. this.API.get("powercompare/windfarmAjax?").then((res) => {
  76. this.wpIdslist = res.data;
  77. }).catch(error =>{
  78. this.$message.error('获取数据失败');
  79. });
  80. },
  81. /**
  82. * 获取项目
  83. */
  84. query_xml(){
  85. this.pj = "";
  86. this.xl = "";
  87. this.API.get("powercompare/projectAjax?wpIds=" + this.fc).then((res) => {
  88. this.projectlist = res.data;
  89. }).catch(error =>{
  90. this.$message.error('获取数据失败');
  91. });
  92. },
  93. /**
  94. * 获取线路
  95. */
  96. query_xl(){
  97. this.xl = "";
  98. this.API.get("powercompare/lineAjax?pjIds=" + this.pj).then((res) => {
  99. this.linelist = res.data;
  100. }).catch(error =>{
  101. this.$message.error('获取数据失败');
  102. });
  103. },
  104. /**
  105. * 获取当前卡片状态
  106. */
  107. handleClick(tab) {
  108. Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
  109. Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
  110. Object.assign(this.$data.autoHeight_pj, this.$options.data().autoHeight_pj);
  111. Object.assign(this.$data.styleObject_pj, this.$options.data().styleObject_pj);
  112. Object.assign(this.$data.autoHeight_xl, this.$options.data().autoHeight_xl);
  113. Object.assign(this.$data.styleObject_xl, this.$options.data().styleObject_xl);
  114. Object.assign(this.$data.queryAll_table_lyl, this.$options.data().queryAll_table_lyl);
  115. if (tab.name === "first") {
  116. this.tableid = "fc";
  117. this.query();
  118. } else if (tab.name === "second") {
  119. this.tableid = "pj";
  120. this.query();
  121. } else if (tab.name === "jdxl") {
  122. this.tableid = "xl";
  123. this.query();
  124. }
  125. },
  126. deleteRow(index, rows) {
  127. rows.splice(index, 1);
  128. },
  129. /**
  130. * 查询风场、项目、线路列表数据结果
  131. */
  132. query() {
  133. Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
  134. Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
  135. Object.assign(this.$data.autoHeight_pj, this.$options.data().autoHeight_pj);
  136. Object.assign(this.$data.styleObject_pj, this.$options.data().styleObject_pj);
  137. Object.assign(this.$data.autoHeight_xl, this.$options.data().autoHeight_xl);
  138. Object.assign(this.$data.styleObject_xl, this.$options.data().styleObject_xl);
  139. Object.assign(this.$data.queryAll_table_lyl, this.$options.data().queryAll_table_lyl);
  140. this.styleObject_fc.height = '460px';
  141. this.autoHeight_fc = '400px';
  142. this.styleObject_pj.height = '860px';
  143. this.autoHeight_pj = '800px';
  144. this.styleObject_xl.height = '1260px';
  145. this.autoHeight_xl = '1200px';
  146. this.fc_date = [];
  147. this.xl_date = [];
  148. this.pj_date = [];
  149. //表格数据获取
  150. this.API
  151. .get(
  152. "powercompare/powerAjaxAll?wpIds=" +
  153. this.fc +
  154. "&beginDate=" +
  155. this.beginDate +
  156. "&endDate=" +
  157. this.endDate +
  158. "&queryType=" +
  159. this.tableid +
  160. "&sortName=" +
  161. this.fc +
  162. "&sortOrder=" +
  163. "Asc"
  164. )
  165. .then((res) => {
  166. let that = this;
  167. Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
  168. this.linechar_data.dayspeed=[];
  169. this.linechar_data.daydl2=[];
  170. this.linechar_data.daynhgzssdl=[];
  171. this.linechar_data.daynhcfdl=[];
  172. this.linechar_data.daynhqfdl=[];
  173. this.linechar_data.daynhxdssdl=[];
  174. this.linechar_data.lyl=[];
  175. this.linechar_data.wtName=[];
  176. this.linechar_data.daynhwhssdl=[];
  177. let queryAll_table = res.data.list;
  178. let queryAll_table_lyl = res.data.lyl;
  179. for(let i = 0;i < Object.keys(queryAll_table).length;i++){
  180. if(queryAll_table[i].wtName!="合计"){
  181. that.linechar_data.dayspeed.push(queryAll_table[i].dayspeed.toFixed(2));
  182. that.linechar_data.daydl2.push(queryAll_table[i].daydl2.toFixed(2));
  183. that.linechar_data.daynhgzssdl.push(queryAll_table[i].daynhgzssdl.toFixed(2));
  184. that.linechar_data.daynhcfdl.push(queryAll_table[i].daynhcfdl.toFixed(2));
  185. that.linechar_data.daynhqfdl.push(queryAll_table[i].daynhqfdl.toFixed(2));
  186. that.linechar_data.daynhxdssdl.push(queryAll_table[i].daynhxdssdl.toFixed(2));
  187. that.linechar_data.lyl.push(queryAll_table[i].lyl.toFixed(2));
  188. that.linechar_data.wtName.push(queryAll_table[i].wtName);
  189. that.linechar_data.total.push(queryAll_table[i].total.toFixed(2));
  190. that.linechar_data.daynhwhssdl.push(queryAll_table[i].daynhwhssdl.toFixed(2));
  191. }
  192. }
  193. if (this.tableid === "fc") {
  194. that.fc_date = queryAll_table;
  195. that.drawhistogram_fc(this.linechar_data,queryAll_table_lyl);
  196. } else if (this.tableid === "pj") {
  197. that.pj_date = queryAll_table;
  198. that.drawhistogram_pj(this.linechar_data,queryAll_table_lyl);
  199. } else if (this.tableid === "xl") {
  200. that.xl_date = queryAll_table;
  201. that.drawhistogram_xl(this.linechar_data,queryAll_table_lyl);
  202. }
  203. }).catch(error =>{
  204. this.$message.error('获取数据失败');
  205. });
  206. },
  207. /**
  208. *
  209. * 询风场、项目、线路列表数据结果
  210. */
  211. queryPowerAll() {
  212. Object.assign(this.$data.autoHeight_fc, this.$options.data().autoHeight_fc);
  213. Object.assign(this.$data.styleObject_fc, this.$options.data().styleObject_fc);
  214. Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
  215. let that = this;
  216. if (
  217. this.beginDate == "" ||
  218. this.endDate == "" ||
  219. this.beginDate == undefined ||
  220. this.endDate == undefined
  221. ) {
  222. this.query_wpid();
  223. that.$message.error("请选时间!");
  224. return;
  225. }
  226. this.fc_date = [];
  227. this.xl_date = [];
  228. this.pj_date = [];
  229. if (
  230. that.fc == "" ||
  231. that.fc == null ||
  232. that.fc == undefined
  233. ) {
  234. that.query();
  235. } else {
  236. this.API
  237. .get(
  238. "powercompare/powerAjax?wpIds=" +
  239. this.fc +
  240. "&pjIds=" +
  241. this.pj +
  242. "&lineIds=" +
  243. this.xl +
  244. "&beginDate=" +
  245. this.beginDate +
  246. "&endDate=" +
  247. this.endDate +
  248. "&sortName=" +
  249. this.fc +
  250. "&sortOrder=" +
  251. "Asc"
  252. )
  253. .then((res) => {
  254. let that = this;
  255. this.len = Object.keys(res.data.list).length;
  256. if(this.len <= 10){that.autoHeight_fc = 575; that.styleObject_fc.height = '700px' }
  257. 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' }
  258. 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' }
  259. 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' }
  260. 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' }
  261. 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' }
  262. 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' }
  263. 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' }
  264. 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' }
  265. this.tableHeight_fc = this.autoHeight_fc - 20;
  266. this.tableHeight_pj = this.autoHeight_pj - 20;
  267. this.tableHeight_xl = this.autoHeight_xl - 20;
  268. Object.assign(this.$data.linechar_data, this.$options.data().linechar_data);
  269. this.linechar_data.dayspeed=[];
  270. this.linechar_data.daydl2=[];
  271. this.linechar_data.daynhgzssdl=[];
  272. this.linechar_data.daynhcfdl=[];
  273. this.linechar_data.daynhqfdl=[];
  274. this.linechar_data.daynhxdssdl=[];
  275. this.linechar_data.lyl=[];
  276. this.linechar_data.wtName=[];
  277. this.linechar_data.daynhwhssdl=[];
  278. let queryAll_table = res.data.list;
  279. let queryAll_table_lyl = res.data.lyl;
  280. //this.query_lyl(queryAll_table);
  281. for(let i = 0;i < Object.keys(queryAll_table).length;i++){
  282. if(queryAll_table[i].wtName!="合计"){
  283. that.linechar_data.dayspeed.push(queryAll_table[i].dayspeed.toFixed(2));
  284. that.linechar_data.daydl2.push(queryAll_table[i].daydl2.toFixed(2));
  285. that.linechar_data.daynhgzssdl.push(queryAll_table[i].daynhgzssdl.toFixed(2));
  286. that.linechar_data.daynhcfdl.push(queryAll_table[i].daynhcfdl.toFixed(2));
  287. that.linechar_data.daynhqfdl.push(queryAll_table[i].daynhqfdl.toFixed(2));
  288. that.linechar_data.daynhxdssdl.push(queryAll_table[i].daynhxdssdl.toFixed(2));
  289. that.linechar_data.lyl.push(queryAll_table[i].lyl.toFixed(2));
  290. that.linechar_data.wtName.push(queryAll_table[i].wtName);
  291. that.linechar_data.total.push(queryAll_table[i].total.toFixed(2));
  292. that.linechar_data.daynhwhssdl.push(queryAll_table[i].daynhwhssdl.toFixed(2));
  293. }
  294. }
  295. if (this.tableid === "fc") {
  296. that.fc_date = queryAll_table;
  297. that.drawhistogram_fc(this.linechar_data,queryAll_table_lyl);
  298. } else if (this.tableid === "pj") {
  299. that.pj_date = queryAll_table;
  300. that.drawhistogram_pj(this.linechar_data,queryAll_table_lyl);
  301. } else if (this.tableid === "xl") {
  302. that.xl_date = queryAll_table;
  303. that.drawhistogram_xl(this.linechar_data,queryAll_table_lyl);
  304. }
  305. }).catch(error =>{
  306. this.$message.error('获取数据失败');
  307. });
  308. }
  309. },
  310. /**
  311. *
  312. * 查询检查
  313. */
  314. checkwindfarm() {
  315. if (this.fc == "") {
  316. this.$message.error("请选择风场!");
  317. return;
  318. }
  319. },
  320. checkproject() {
  321. if (this.fc == "") {
  322. this.$message.error("请选择项目!");
  323. return;
  324. }
  325. if (new Date(this.timedate) == null) {
  326. this.$message.error("请选择时间");
  327. return;
  328. }
  329. },
  330. checktime() {
  331. if (new Date(this.timedate) == null) {
  332. this.$message.error("请选择时间");
  333. return;
  334. }
  335. },
  336. /**
  337. * 详情跳转
  338. */
  339. queryApDataMx() {
  340. this.$router.push({ path: "/newPerformanceList" ,
  341. query: {
  342. beginDate : this.beginDate,
  343. endDate : this.endDate
  344. },});
  345. },
  346. /**
  347. * 格式转换
  348. */
  349. filter_total(cellValue) {
  350. return parseFloat(cellValue.total).toFixed(2);
  351. },
  352. filter_daydl2(cellValue) {
  353. return parseFloat(cellValue.daydl2).toFixed(2);
  354. },
  355. filter_dayspeed(cellValue) {
  356. return parseFloat(cellValue.dayspeed).toFixed(2);
  357. },
  358. filter_daynhwhssdl(cellValue) {
  359. return parseFloat(cellValue.daynhwhssdl).toFixed(2);
  360. },
  361. filter_daynhcfdl(cellValue) {
  362. return parseFloat(cellValue.daynhcfdl).toFixed(2);
  363. },
  364. filter_daynhxdssdl(cellValue) {
  365. return parseFloat(cellValue.daynhqfdl).toFixed(2);
  366. },
  367. filter_lyl(cellValue) {
  368. return parseFloat(cellValue.lyl).toFixed(2);
  369. },
  370. filter_daynhgzssdl(cellValue) {
  371. return parseFloat(cellValue.daynhgzssdl).toFixed(2);
  372. },
  373. toExcel() {
  374. let that = this;
  375. if (this.tableid === "fc") {
  376. excelHelper.exportExcel("fc_table", "fc数据", ".xls", true);
  377. } else if (this.tableid === "pj") {
  378. excelHelper.exportExcel("pj_table", "pj数据", ".xls", true);
  379. } else if (this.tableid === "xl") {
  380. excelHelper.exportExcel("xl_table", "xl数据", ".xls", true);
  381. }
  382. },
  383. drawhistogram_fc(date,date2) {
  384. this.chartLine = echarts.init(document.getElementById("histogram_fc"));
  385. this.chartLine.clear();
  386. this.chartLine.resize({ height: this.autoHeight_fc });
  387. var option;
  388. option = {
  389. color: [
  390. "#64E572",
  391. "#24CBE5",
  392. "#DDDF00",
  393. "#ED561B",
  394. "#50B432",
  395. "#058DC7",
  396. ],
  397. title: {
  398. text: "风机绩效榜单",
  399. left: 300,
  400. top: -5,
  401. textStyle: {
  402. fontSize: 13,
  403. },
  404. },
  405. tooltip: {
  406. trigger: "axis",
  407. axisPointer: {
  408. // Use axis to trigger tooltip
  409. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  410. },
  411. },
  412. legend: {
  413. left: 15,
  414. top: 30,
  415. data: [
  416. "实发电量",
  417. "计划检修损失",
  418. "非计划检修损失",
  419. "限电损失",
  420. "受累损失",
  421. "性能损失",
  422. "-",
  423. ],
  424. },
  425. grid: {
  426. left: "3%",
  427. right: "4%",
  428. bottom: "3%",
  429. containLabel: true,
  430. },
  431. xAxis: {
  432. type: "value",
  433. max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
  434. },
  435. yAxis: {
  436. type: "category",
  437. data: date.wtName,
  438. },
  439. series: [
  440. {
  441. name: "实发电量",
  442. type: "bar",
  443. stack: "total",
  444. label: {
  445. show: true,
  446. },
  447. emphasis: {
  448. focus: "series",
  449. },
  450. data: date.daydl2,
  451. },
  452. {
  453. name: "计划检修损失",
  454. type: "bar",
  455. stack: "total",
  456. label: {
  457. show: true,
  458. },
  459. emphasis: {
  460. focus: "series",
  461. },
  462. data: date.daynhwhssdl,
  463. },
  464. {
  465. name: "非计划检修损失",
  466. type: "bar",
  467. stack: "total",
  468. label: {
  469. show: true,
  470. },
  471. emphasis: {
  472. focus: "series",
  473. },
  474. data: date.daynhgzssdl,
  475. },
  476. {
  477. name: "限电损失",
  478. type: "bar",
  479. stack: "total",
  480. label: {
  481. show: true,
  482. },
  483. emphasis: {
  484. focus: "series",
  485. },
  486. data: date.daynhxdssdl,
  487. },
  488. {
  489. name: "受累损失",
  490. type: "bar",
  491. stack: "total",
  492. label: {
  493. show: true,
  494. },
  495. emphasis: {
  496. focus: "series",
  497. },
  498. data: date.daynhcfdl,
  499. },
  500. {
  501. name: "性能损失",
  502. type: "bar",
  503. stack: "total",
  504. label: {
  505. show: true,
  506. },
  507. emphasis: {
  508. focus: "series",
  509. },
  510. data: date.daynhqfdl,
  511. },
  512. //曲线
  513. {
  514. name: "-",
  515. data: date.total,
  516. markPoint: {
  517. data: date2,
  518. },
  519. type: "line",
  520. symbol: "circle",
  521. symbolSize: 20,
  522. lineStyle: {
  523. color: "#5470C6",
  524. width: 4,
  525. type: "dashed",
  526. },
  527. itemStyle: {
  528. borderWidth: 3,
  529. borderColor: "#EE6666",
  530. color: "yellow",
  531. },
  532. },
  533. ],
  534. };
  535. this.chartLine.setOption(option);
  536. },
  537. drawhistogram_pj(date,date2) {
  538. this.chartLine = echarts.init(document.getElementById("histogram_xm"));
  539. this.chartLine.clear();
  540. this.chartLine.resize({ height: this.autoHeight_pj });
  541. var option;
  542. var option;
  543. option = {
  544. color: [
  545. "#64E572",
  546. "#24CBE5",
  547. "#DDDF00",
  548. "#ED561B",
  549. "#50B432",
  550. "#058DC7",
  551. ],
  552. title: {
  553. text: "项目绩效榜单",
  554. left: 300,
  555. top: -5,
  556. textStyle: {
  557. fontSize: 13,
  558. },
  559. },
  560. tooltip: {
  561. trigger: "axis",
  562. axisPointer: {
  563. // Use axis to trigger tooltip
  564. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  565. },
  566. },
  567. legend: {
  568. left: 15,
  569. top: 30,
  570. data: [
  571. "实发电量",
  572. "计划检修损失",
  573. "非计划检修损失",
  574. "限电损失",
  575. "受累损失",
  576. "性能损失",
  577. "-",
  578. ],
  579. },
  580. grid: {
  581. left: "3%",
  582. right: "4%",
  583. bottom: "3%",
  584. containLabel: true,
  585. },
  586. xAxis: {
  587. type: "value",
  588. max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
  589. },
  590. yAxis: {
  591. type: "category",
  592. data: date.wtName,
  593. },
  594. series: [
  595. {
  596. name: "实发电量",
  597. type: "bar",
  598. stack: "total",
  599. label: {
  600. show: true,
  601. },
  602. emphasis: {
  603. focus: "series",
  604. },
  605. data: date.daydl2,
  606. },
  607. {
  608. name: "计划检修损失",
  609. type: "bar",
  610. stack: "total",
  611. label: {
  612. show: true,
  613. },
  614. emphasis: {
  615. focus: "series",
  616. },
  617. data: date.daynhwhssdl,
  618. },
  619. {
  620. name: "非计划检修损失",
  621. type: "bar",
  622. stack: "total",
  623. label: {
  624. show: true,
  625. },
  626. emphasis: {
  627. focus: "series",
  628. },
  629. data: date.daynhgzssdl,
  630. },
  631. {
  632. name: "限电损失",
  633. type: "bar",
  634. stack: "total",
  635. label: {
  636. show: true,
  637. },
  638. emphasis: {
  639. focus: "series",
  640. },
  641. data: date.daynhxdssdl,
  642. },
  643. {
  644. name: "受累损失",
  645. type: "bar",
  646. stack: "total",
  647. label: {
  648. show: true,
  649. },
  650. emphasis: {
  651. focus: "series",
  652. },
  653. data: date.daynhcfdl,
  654. },
  655. {
  656. name: "性能损失",
  657. type: "bar",
  658. stack: "total",
  659. label: {
  660. show: true,
  661. },
  662. emphasis: {
  663. focus: "series",
  664. },
  665. data: date.daynhqfdl,
  666. },
  667. //曲线
  668. {
  669. name: "-",
  670. data: date.total,
  671. markPoint: {
  672. data: date2,
  673. },
  674. type: "line",
  675. symbol: "circle",
  676. symbolSize: 20,
  677. lineStyle: {
  678. color: "#5470C6",
  679. width: 4,
  680. type: "dashed",
  681. },
  682. itemStyle: {
  683. borderWidth: 3,
  684. borderColor: "#EE6666",
  685. color: "yellow",
  686. },
  687. },
  688. ],
  689. };
  690. this.chartLine.setOption(option);
  691. },
  692. drawhistogram_xl(date,date2) {
  693. this.chartLine = echarts.init(document.getElementById("histogram_jdxl"));
  694. this.chartLine.clear();
  695. this.chartLine.resize({ height: this.autoHeight_xl });
  696. var option;
  697. var option;
  698. option = {
  699. color: [
  700. "#64E572",
  701. "#24CBE5",
  702. "#DDDF00",
  703. "#ED561B",
  704. "#50B432",
  705. "#058DC7",
  706. ],
  707. title: {
  708. text: "路线绩效榜单",
  709. left: 300,
  710. top: -5,
  711. textStyle: {
  712. fontSize: 13,
  713. },
  714. },
  715. tooltip: {
  716. trigger: "axis",
  717. axisPointer: {
  718. // Use axis to trigger tooltip
  719. type: "shadow", // 'shadow' as default; can also be 'line' or 'shadow'
  720. },
  721. },
  722. legend: {
  723. left: 15,
  724. top: 30,
  725. data: [
  726. "实发电量",
  727. "计划检修损失",
  728. "非计划检修损失",
  729. "限电损失",
  730. "受累损失",
  731. "性能损失",
  732. "-",
  733. ],
  734. },
  735. grid: {
  736. left: "3%",
  737. right: "4%",
  738. bottom: "3%",
  739. containLabel: true,
  740. },
  741. xAxis: {
  742. type: "value",
  743. max: Math.ceil(Math.max.apply(null, date.total))+ Math.ceil((Math.max.apply(null, date.total))*0.08)
  744. },
  745. yAxis: {
  746. type: "category",
  747. data: date.wtName,
  748. },
  749. series: [
  750. {
  751. name: "实发电量",
  752. type: "bar",
  753. stack: "total",
  754. label: {
  755. show: true,
  756. },
  757. emphasis: {
  758. focus: "series",
  759. },
  760. data: date.daydl2,
  761. },
  762. {
  763. name: "计划检修损失",
  764. type: "bar",
  765. stack: "total",
  766. label: {
  767. show: true,
  768. },
  769. emphasis: {
  770. focus: "series",
  771. },
  772. data: date.daynhwhssdl,
  773. },
  774. {
  775. name: "非计划检修损失",
  776. type: "bar",
  777. stack: "total",
  778. label: {
  779. show: true,
  780. },
  781. emphasis: {
  782. focus: "series",
  783. },
  784. data: date.daynhgzssdl,
  785. },
  786. {
  787. name: "限电损失",
  788. type: "bar",
  789. stack: "total",
  790. label: {
  791. show: true,
  792. },
  793. emphasis: {
  794. focus: "series",
  795. },
  796. data: date.daynhxdssdl,
  797. },
  798. {
  799. name: "受累损失",
  800. type: "bar",
  801. stack: "total",
  802. label: {
  803. show: true,
  804. },
  805. emphasis: {
  806. focus: "series",
  807. },
  808. data: date.daynhcfdl,
  809. },
  810. {
  811. name: "性能损失",
  812. type: "bar",
  813. stack: "total",
  814. label: {
  815. show: true,
  816. },
  817. emphasis: {
  818. focus: "series",
  819. },
  820. data: date.daynhqfdl,
  821. },
  822. //曲线
  823. {
  824. name: "-",
  825. data: date.total,
  826. markPoint: {
  827. data: date2,
  828. },
  829. type: "line",
  830. symbol: "circle",
  831. symbolSize: 20,
  832. lineStyle: {
  833. color: "#5470C6",
  834. width: 4,
  835. type: "dashed",
  836. },
  837. itemStyle: {
  838. borderWidth: 3,
  839. borderColor: "#EE6666",
  840. color: "yellow",
  841. },
  842. },
  843. ],
  844. };
  845. this.chartLine.setOption(option);
  846. },
  847. },
  848. mounted() {
  849. this.$nextTick(() => {
  850. //后面的50:根据需求空出的高度,自行调整
  851. });
  852. this.query_wpid();
  853. this.query();
  854. },
  855. };