reportDialog.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868
  1. <template>
  2. <div class="exportPDF">
  3. <el-button round size="mini" class="buttons" @click="savePdf"
  4. >导出PDF</el-button
  5. >
  6. <!-- <el-button round size="mini" class="buttons" @click="exportWord"
  7. >导出Word</el-button
  8. > -->
  9. </div>
  10. <div
  11. :class="showWhite ? 'monthReportWhite' : 'monthReport'"
  12. v-loading="loading"
  13. >
  14. <div class="dialogHeader">
  15. <span
  16. >{{ dialogTitle }}号风机{{ pickerTimerYear }}年{{
  17. pickerTimerMonth
  18. }}月运行指标性能分析</span
  19. >
  20. </div>
  21. <div class="monthReportTable">
  22. <el-table :data="monthReportData" stripe size="mini" style="width: 100%">
  23. <el-table-column
  24. v-for="(item, index) in tableHeader"
  25. :key="index"
  26. :prop="item.field"
  27. :label="item.name"
  28. align="center"
  29. :width="item.width"
  30. >
  31. </el-table-column>
  32. </el-table>
  33. </div>
  34. <div class="monthReportMsage">
  35. <div class="textIndent">
  36. 1.本月{{ dialogTitle }}号风机风机设备利用小时数{{
  37. tableVal.byzb && (tableVal.byzb.lyxs || 0)
  38. }}小时、同比{{ tableVal.tqzb && (tableVal.tqzb.lyxs || 0) }}小时,
  39. 设备可利用率{{ tableVal.byzb && (tableVal.byzb.sbklyl || 0) }}%、同比{{
  40. tableVal.tqzb && (tableVal.tqzb.sbklyl || 0)
  41. }}%, 等效可用系数{{
  42. tableVal.byzb && (tableVal.byzb.dxklyxs || 0)
  43. }}%、同比{{ tableVal.tqzb && (tableVal.tqzb.dxklyxs || 0) }}%,
  44. 静风频率达到{{ tableVal.byzb && (tableVal.byzb.jfpl || 0) }}%、同比{{
  45. tableVal.tqzb && (tableVal.tqzb.jfpl || 0)
  46. }}%, 机组功率特性一致性系数达到{{
  47. tableVal.byzb && (tableVal.byzb.glyzxxs || 0)
  48. }}%、同比{{ tableVal.tqzb && (tableVal.tqzb.glyzxxs || 0) }}%。
  49. </div>
  50. <div class="textIndent">
  51. 2.{{ dialogTitle }}风机{{ pickerTimerYear }}年{{
  52. pickerTimerMonth
  53. }}月平均风速{{ tableVal.byzb && (tableVal.byzb.fs || 0) }}m/s、同比{{
  54. tableVal.tqzb && (tableVal.tqzb.fs || 0)
  55. }}m/s, 小风平均切入风速{{
  56. tableVal.byzb && (tableVal.byzb.xfqr || 0)
  57. }}m/s、同比{{ tableVal.tqzb && (tableVal.tqzb.xfqr || 0) }}m/s,
  58. 有效风时数{{ tableVal.byzb && (tableVal.byzb.yxfss || 0) }}小时、同比{{
  59. tableVal.tqzb && (tableVal.tqzb.yxfss || 0)
  60. }}小时, 实际发电电量{{
  61. tableVal.byzb && (tableVal.byzb.fdl || 0)
  62. }}万kwh、同比{{ tableVal.tqzb && (tableVal.tqzb.fdl || 0) }}万kwh,
  63. 同比增长率{{
  64. tableVal.byzb && tableVal.tqzb && tableVal.tqzb.fdl > 0
  65. ? (
  66. ((tableVal.byzb.fdl - tableVal.tqzb.fdl) / tableVal.tqzb.fdl) *
  67. 100
  68. ).toFixed(2)
  69. : 0
  70. }}%,各项损失电量累计{{
  71. tableVal.byzb && (tableVal.byzb.llfdl - tableVal.byzb.fdl).toFixed(2)
  72. }}万kwh、 同比{{
  73. tableVal.byzb &&
  74. tableVal.tqzb &&
  75. (tableVal.tqzb.llfdl - tableVal.tqzb.fdl).toFixed(2)
  76. }}万kwh,同比增长率{{
  77. tableVal.byzb &&
  78. tableVal.tqzb &&
  79. tableVal.tqzb.llfdl - tableVal.tqzb.fdl > 0
  80. ? (
  81. ((tableVal.byzb.llfdl -
  82. tableVal.byzb.fdl -
  83. (tableVal.tqzb.llfdl - tableVal.tqzb.fdl)) /
  84. (tableVal.tqzb.llfdl - tableVal.tqzb.fdl)) *
  85. 100
  86. ).toFixed(2)
  87. : 0
  88. }}%, 理论发电量{{
  89. tableVal.byzb && tableVal.byzb.llfdl
  90. }}万kwh,实际发电量与理论发电量相差{{
  91. tableVal.tbzb && (tableVal.byzb.llfdl - tableVal.byzb.fdl).toFixed(2)
  92. }}万kwh。
  93. </div>
  94. <div class="textIndent">
  95. 3.本月静风频率{{
  96. tableVal.byzb && (tableVal.byzb.jfpl || 0)
  97. }}%,月累计待机小时{{
  98. tableVal.byzb && (tableVal.byzb.djxs || 0)
  99. }}小时,待机占比{{
  100. tableVal.byzb &&
  101. ((tableVal.byzb.djxs / tableVal.byzb.rlxs) * 100).toFixed(2)
  102. }}%。
  103. </div>
  104. </div>
  105. <div class="monthReportEcharts">
  106. <div id="ffEchart" style="width: 100%; height: 350px"></div>
  107. <div id="fiveEchart" style="width: 100%; height: 350px"></div>
  108. <!-- <div id="jfdjEchart" style="width: 100%; height: 350px"></div> -->
  109. </div>
  110. </div>
  111. </template>
  112. <script>
  113. import {
  114. getApisingleanalysisSub,
  115. getApisingleanalysisChart,
  116. } from "@/api/monthlyPerformanceAnalysis";
  117. import * as echarts from "echarts";
  118. import Get_PDF from "@/tools/htmlToPdf.js";
  119. // import { exportWord, getBase64Sync } from "@/tools/exportFile.js";
  120. import dayjs from "dayjs";
  121. import PizZip from "pizzip";
  122. import docxtemplater from "docxtemplater";
  123. import JSZipUtils from "jszip-utils";
  124. import { saveAs } from "file-saver";
  125. export default {
  126. data() {
  127. return {
  128. img0: "",
  129. img1: "",
  130. img2: "",
  131. showWhite: true,
  132. dialogTitle: "",
  133. pickerTimerYear: "",
  134. pickerTimerMonth: "",
  135. monthReportData: [],
  136. loading: false,
  137. tableHeader: [
  138. { name: "指标名称", field: "name", width: "270" },
  139. { name: "本月值", field: "byzb" },
  140. { name: "去年同期", field: "tqzb" },
  141. { name: "同比增长率(%)", field: "tbzb" },
  142. { name: "上月", field: "hqzb" },
  143. { name: "环比增长率(%)", field: "hbzb" },
  144. ],
  145. tabrow: {
  146. fdl: "实际发电量(万千瓦时)",
  147. fs: "平均风速(m/s)",
  148. gzss: "故障损失电量(万千瓦时)",
  149. jxss: "计划检修损失电量(万千瓦时)",
  150. xdss: "调度限电损失电量(万千瓦时)",
  151. xnss: "性能未达标损失电量(万千瓦时)",
  152. slss: "受累损失电量(万千瓦时)",
  153. llfdl: "理论发电量(万千瓦时)",
  154. gzxs: "故障停运时间(小时)",
  155. jxxs: "检修停运时间(小时)",
  156. djxs: "待机时间(小时)",
  157. zdxs: "通讯中断时间(小时)",
  158. yxxs: "并网时间(小时)",
  159. lyxs: "设备利用小时(小时)",
  160. sbklyl: "设备利用率(%)",
  161. dxklyxs: "等效可用系数(%)",
  162. xfqr: "小风切入风速(m/s)",
  163. glyzxxs: "功率特性一致性系数(%)",
  164. yxfss: "有效风时数(小时)",
  165. xfqrhgl: "小风切入合格率(%)",
  166. jfpl: "静风频率(%)",
  167. },
  168. tableVal: "",
  169. rowData: {},
  170. form: {},
  171. };
  172. },
  173. methods: {
  174. init(row) {
  175. this.monthReportData = [];
  176. this.tableVal = "";
  177. this.showWhite = true;
  178. this.rowData = row;
  179. this.getTableData(row);
  180. },
  181. changeModel() {
  182. this.showWhite = !this.showWhite;
  183. if (!this.showWhite) {
  184. document.querySelector(".monthReport").style.background = "#000";
  185. } else {
  186. document.querySelector(".monthReportWhite").style.background = "#fff";
  187. }
  188. this.getEchartsData(this.rowData);
  189. },
  190. savePdf() {
  191. let dom = "";
  192. if (!this.showWhite) {
  193. dom = document.querySelector(".monthReport");
  194. } else {
  195. dom = document.querySelector(".monthReportWhite");
  196. }
  197. Get_PDF.downloadPDF(
  198. dom,
  199. "运行指标性能分析报告" +
  200. dayjs(new Date()).format("YYYY-MM-DD HH:mm:ss"),
  201. this.showWhite
  202. );
  203. // exportWord(dom, "运行指标性能分析报告.docx", this.showWhite);
  204. },
  205. base64DataURLToArrayBuffer(dataURL) {
  206. const base64Regex = /^data:image\/(png|jpg|svg|svg\+xml);base64,/;
  207. if (!base64Regex.test(dataURL)) {
  208. return false;
  209. }
  210. const stringBase64 = dataURL.replace(base64Regex, "");
  211. let binaryString;
  212. if (typeof window !== "undefined") {
  213. binaryString = window.atob(stringBase64);
  214. } else {
  215. binaryString = new Buffer(stringBase64, "base64").toString("binary");
  216. }
  217. const len = binaryString.length;
  218. const bytes = new Uint8Array(len);
  219. for (let i = 0; i < len; i++) {
  220. const ascii = binaryString.charCodeAt(i);
  221. bytes[i] = ascii;
  222. }
  223. return bytes.buffer;
  224. },
  225. //点击按钮导出word (形参作为word发送到邮箱标识 无需考虑)
  226. exportWord(fileExport) {
  227. //这里要引入处理图片的插件,下载docxtemplater后,引入的就在其中了
  228. //编写docx模板 本文后续有文档模板语法教学
  229. var ImageModule = require("docxtemplater-image-module-free");
  230. var fs = require("fs");
  231. let _this = this;
  232. // 读取并获得模板文件的二进制内容,放在项目根目录public中即可
  233. JSZipUtils.getBinaryContent(
  234. "dataStatistics.docx",
  235. function (error, content) {
  236. if (error) {
  237. throw error;
  238. }
  239. // 图片处理
  240. let opts = {};
  241. opts = { centered: false };
  242. opts.getImage = (chartId) => {
  243. return _this.base64DataURLToArrayBuffer(chartId);
  244. };
  245. opts.getSize = function (img, tagValue, tagName) {
  246. //自定义指定图像大小,此处可动态调试各别图片的大小
  247. return [650, 300]; //例子:宽50px 高度100px
  248. };
  249. // 创建一个PizZip实例,内容为模板的内容
  250. let zip = new PizZip(content);
  251. // 创建并加载docxtemplater实例对象
  252. let doc = new docxtemplater();
  253. doc.attachModule(new ImageModule(opts));
  254. doc.loadZip(zip);
  255. // 设置模板变量的值
  256. doc.setData({
  257. dialogTitle: _this.dialogTitle,
  258. pickerTimerYear: _this.pickerTimerYear,
  259. pickerTimerMonth: _this.pickerTimerMonth,
  260. ..._this.articleParams, //详情内容字段(Object)
  261. table: _this.detailParams, //表格内容(Array)
  262. img0: _this.img0, // echarts图片
  263. img1: _this.img1,
  264. img2: _this.img2,
  265. monthReportData: _this.monthReportData,
  266. lyxs: _this.tableVal.byzb.lyxs,
  267. tplyxs: _this.tableVal.tqzb.lyxs,
  268. sbklyl: _this.tableVal.byzb.sbklyl,
  269. tpsbklyl: _this.tableVal.tqzb.sbklyl,
  270. dxklyxs: _this.tableVal.byzb.dxklyxs,
  271. tpdxklyxs: _this.tableVal.tqzb.dxklyxs,
  272. jfpl: _this.tableVal.byzb.jfpl,
  273. tpjfpl: _this.tableVal.tqzb.jfpl,
  274. glyzxxs: _this.tableVal.byzb.glyzxxs,
  275. tpglyzxxs: _this.tableVal.tqzb.glyzxxs,
  276. // fs: _this.tableVal.byzb.fs,
  277. // tpfs: _this.tableVal.tqzb.fs,
  278. // xfqr: _this.tableVal.byzb.xfqr,
  279. // tpxfqr: _this.tableVal.tqzb.xfqr,
  280. // yxfss : _this.tableVal.byzb.yxfss ,
  281. // tpyxfss : _this.tableVal.tqzb.yxfss ,
  282. // fdl: _this.tableVal.byzb.fdl,
  283. // tpfdl: _this.tableVal.tqzb.fdl,
  284. // tbfdl: _this.tableVal.tbzb.fdl,
  285. // ssfdl: _this.tableVal.byzb.llfdl - _this.tableVal.byzb.fdl,
  286. // tbsfdl: _this.tableVal.tqzb.llfdl - _this.tableVal.tqzb.fdl,
  287. // zzl: _this.tableVal.byzb.llfdl - _this.tableVal.tbzb.fdl,
  288. // llfdl: _this.tableVal.byzb.llfdl,
  289. // xcfdl: _this.tableVal.tbzb.llfdl,
  290. });
  291. try {
  292. // 用模板变量的值替换所有模板变量
  293. doc.render();
  294. } catch (error) {
  295. // 抛出异常
  296. let e = {
  297. message: error.message,
  298. name: error.name,
  299. stack: error.stack,
  300. properties: error.properties,
  301. };
  302. throw error;
  303. }
  304. // 生成一个代表docxtemplater对象的zip文件(不是一个真实的文件,而是在内存中的表示)
  305. let out = doc.getZip().generate({
  306. type: "blob",
  307. mimeType:
  308. "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
  309. });
  310. //此文件流 可以传送到后端服务器生成二进制文件(包含上传到阿里云服务器)
  311. if (fileExport == "export") {
  312. let formData = new FormData(); //创建formdata来存文件
  313. const chunkfile = new File([out], "性能分析.docx");
  314. formData.append("file", chunkfile); //存入文件
  315. formData.append("toEmailList", _this.mailForm.toEmailList);
  316. formData.append("customSubject", _this.mailForm.customSubject);
  317. //formData文件 需注意此api请求方式 下文会描述
  318. dataDetailsEmailApi(formData).then((res) => {
  319. if (res.data.code == 200) {
  320. _this.$message.success("发送成功");
  321. }
  322. });
  323. } else {
  324. // 将目标文件对象保存为目标类型的文件,并命名
  325. saveAs(out, "性能分析.docx");
  326. }
  327. }
  328. );
  329. },
  330. async getTableData(row) {
  331. this.loading = true;
  332. let params = {
  333. wtId: row.windturbineid,
  334. year: this.pickerTimerYear,
  335. month: this.pickerTimerMonth,
  336. };
  337. const { data: datas } = await getApisingleanalysisSub(params);
  338. this.tableVal = datas.data;
  339. let arr = [];
  340. let keyarr = Object.keys(datas.data.byzb);
  341. let jarr = Object.keys(datas.data);
  342. for (let k of keyarr) {
  343. let obj = {
  344. name: k,
  345. byzb: null,
  346. hbzb: null,
  347. hqzb: null,
  348. tbzb: null,
  349. tqzb: null,
  350. };
  351. for (let i in datas.data) {
  352. for (let j of jarr) {
  353. if (i == j) {
  354. obj[j] = datas.data[i][k] || 0;
  355. }
  356. }
  357. }
  358. if (k != "tjxs") {
  359. arr.push(obj);
  360. }
  361. }
  362. console.log(arr);
  363. arr = arr.filter((e) => {
  364. return (
  365. e.name != undefined &&
  366. e.name != "wtcode" &&
  367. e.name != "id" &&
  368. e.name != "windturbineid" &&
  369. e.name != "companyId" &&
  370. e.name != "types" &&
  371. e.name != "windturbineName" &&
  372. e.name != "windPowerStationId" &&
  373. e.name != "windPowerStationName" &&
  374. e.name != "recorddate" &&
  375. e.name != "swdl" &&
  376. e.name != "gwdl" &&
  377. e.name != "rlxs" &&
  378. e.name != "fjrl"
  379. );
  380. });
  381. console.log(arr);
  382. arr.forEach((e) => {
  383. e.name = this.tabrow[e.name];
  384. });
  385. this.monthReportData = arr;
  386. this.getEchartsData(row);
  387. },
  388. async getEchartsData(row) {
  389. let params = {
  390. wtId: row.windturbineid,
  391. year: this.pickerTimerYear,
  392. month: this.pickerTimerMonth,
  393. };
  394. const { data: datas } = await getApisingleanalysisChart(params);
  395. const res = datas;
  396. // 日发电量与风速
  397. this.makePowerAndWind(res);
  398. // 五项损失
  399. this.makeFiveBarEchart(res);
  400. //静风频率和待机时间
  401. // this.makeQuietAirStandby(res);
  402. this.loading = false;
  403. },
  404. //日发电量与风速----数据整体与展示
  405. makePowerAndWind(res) {
  406. let arrfffdl = [];
  407. let arrfffs = [];
  408. let xAxis = [];
  409. res.ff.forEach((e) => {
  410. let date = e.recorddate;
  411. xAxis.push(date);
  412. let objfdl = {
  413. name: "日发电量",
  414. value: e.fdl,
  415. itemStyle: {
  416. color: "#05bb4c",
  417. },
  418. };
  419. let objfs = {
  420. name: "风速",
  421. value: e.fs,
  422. itemStyle: {
  423. color: "#dcc652",
  424. },
  425. };
  426. arrfffdl.push(objfdl);
  427. arrfffs.push(objfs);
  428. });
  429. this.getPowerAndWind(xAxis, arrfffdl, arrfffs);
  430. },
  431. getPowerAndWind(xAxis, barData, lineData) {
  432. let option = {
  433. backgroundColor: this.showWhite ? "#fff" : "",
  434. color: ["#05bb4c", "#dcc652"],
  435. title: {
  436. text: "日发电量",
  437. textStyle: {
  438. color: this.showWhite ? "#000" : "#fff",
  439. },
  440. },
  441. tooltip: {
  442. trigger: "axis",
  443. },
  444. legend: {
  445. right: "20",
  446. data: ["日发电量", "风速"],
  447. textStyle: {
  448. color: this.showWhite ? "#000" : "#fff",
  449. },
  450. },
  451. xAxis: [
  452. {
  453. type: "category",
  454. data: xAxis,
  455. axisLabel: {
  456. color: this.showWhite ? "#000" : "#fff",
  457. },
  458. },
  459. ],
  460. yAxis: [
  461. {
  462. type: "value",
  463. name: "日发电量(kWh)",
  464. // min: 0,
  465. // max: 250,
  466. // interval: 50,
  467. nameTextStyle: {
  468. color: this.showWhite ? "#000" : "#fff",
  469. },
  470. axisLabel: {
  471. color: this.showWhite ? "#000" : "#fff",
  472. formatter: "{value}",
  473. },
  474. },
  475. {
  476. type: "value",
  477. name: "风速(m/s)",
  478. nameTextStyle: {
  479. color: this.showWhite ? "#000" : "#fff",
  480. },
  481. axisLabel: {
  482. color: this.showWhite ? "#000" : "#fff",
  483. formatter: "{value}",
  484. },
  485. },
  486. ],
  487. series: [
  488. {
  489. name: "日发电量",
  490. type: "bar",
  491. barWidth: 25,
  492. yAxisIndex: 0,
  493. data: barData,
  494. },
  495. {
  496. name: "风速",
  497. type: "line",
  498. yAxisIndex: 1,
  499. data: lineData,
  500. },
  501. ],
  502. };
  503. // 基于准备好的dom,初始化echarts实例
  504. let dom = document.getElementById("ffEchart");
  505. dom.removeAttribute("_echarts_instance_");
  506. let myChart = echarts.init(dom);
  507. myChart.setOption(option, this.showWhite ? "" : "dark");
  508. this.img0 = myChart.getDataURL({
  509. pixelRatio: 1, // 导出的图片分辨率比例,默认为 1。
  510. backgroundColor: "#ffffff", // 导出的图片背景色,默认使用 option 里的 backgroundColor
  511. });
  512. window.addEventListener("resize", function () {
  513. myChart.resize();
  514. });
  515. },
  516. //五项损失
  517. makeFiveBarEchart(res) {
  518. let arrwslegend = [
  519. "检修损失电量",
  520. "故障损失电量",
  521. "限电损失电量",
  522. "受累损失电量",
  523. "性能未达标损失电量",
  524. ];
  525. let arrwsdata = [
  526. {
  527. name: "检修损失电量",
  528. type: "bar",
  529. stack: "one",
  530. barWidth: "25",
  531. data: res.ws.map((i) => i.jxss),
  532. },
  533. {
  534. name: "故障损失电量",
  535. type: "bar",
  536. stack: "one",
  537. barWidth: "25",
  538. data: res.ws.map((i) => i.gzss),
  539. },
  540. {
  541. name: "限电损失电量",
  542. type: "bar",
  543. stack: "one",
  544. barWidth: "25",
  545. data: res.ws.map((i) => i.xdss),
  546. },
  547. {
  548. name: "受累损失电量",
  549. type: "bar",
  550. stack: "one",
  551. barWidth: "25",
  552. data: res.ws.map((i) => i.slss),
  553. },
  554. {
  555. name: "性能未达标损失电量",
  556. type: "bar",
  557. stack: "one",
  558. barWidth: "25",
  559. data: res.ws.map((i) => i.xnss),
  560. },
  561. ];
  562. let xAxis = res.ws.map((i) => dayjs(i.recorddate).format("YYYY-MM-DD"));
  563. this.getFiveBarEchart(xAxis, arrwslegend, arrwsdata);
  564. },
  565. getFiveBarEchart(xAxis, lenged, series) {
  566. let option = {
  567. backgroundColor: this.showWhite ? "#fff" : "",
  568. color: [ "#e17e23", "#ba3237", "#c531c7", "#000","#05bb4c",],
  569. title: {
  570. text: "损失电量分析",
  571. textStyle: {
  572. color: this.showWhite ? "#000" : "#fff",
  573. },
  574. },
  575. tooltip: {
  576. trigger: "axis",
  577. textStyle: {
  578. color: this.showWhite ? "#000" : "#fff",
  579. },
  580. },
  581. legend: {
  582. data: lenged,
  583. right: 20,
  584. textStyle: {
  585. color: this.showWhite ? "#000" : "#fff",
  586. },
  587. },
  588. xAxis: [
  589. {
  590. type: "category",
  591. axisLabel: {
  592. color: this.showWhite ? "#000" : "#fff",
  593. },
  594. data: xAxis,
  595. },
  596. ],
  597. yAxis: [
  598. {
  599. type: "value",
  600. name: "kWh",
  601. nameTextStyle: {
  602. color: this.showWhite ? "#000" : "#fff",
  603. },
  604. axisLabel: {
  605. color: this.showWhite ? "#000" : "#fff",
  606. },
  607. },
  608. ],
  609. series: series,
  610. };
  611. // 基于准备好的dom,初始化echarts实例
  612. let dom = document.getElementById("fiveEchart");
  613. dom.removeAttribute("_echarts_instance_");
  614. let myChart = echarts.init(dom);
  615. myChart.setOption(option, this.showWhite ? "" : "dark");
  616. setTimeout(() => {
  617. this.img1 = myChart.getDataURL({
  618. pixelRatio: 1, // 导出的图片分辨率比例,默认为 1。
  619. backgroundColor: "#ffffff", // 导出的图片背景色,默认使用 option 里的 backgroundColor
  620. });
  621. }, 2000);
  622. window.addEventListener("resize", function () {
  623. myChart.resize();
  624. });
  625. },
  626. //静风频率和待机时间
  627. makeQuietAirStandby(res) {
  628. // let arrjdjf = [];
  629. // let arrjddj = [];
  630. // let xAxis = [];
  631. // let series = [];
  632. // res.jd.forEach((e) => {
  633. // series;
  634. // let date = e.recorddate.substring(
  635. // e.recorddate.indexOf("-") + 1,
  636. // e.recorddate.indexOf("T")
  637. // );
  638. // xAxis.push(date);
  639. // arrjdjf.push(e.jfpl);
  640. // arrjddj.push(e.tjxs);
  641. // });
  642. // let obj = {
  643. // title: "静风时长(小时)",
  644. // type: "line",
  645. // value: arrjdjf,
  646. // };
  647. // series.push(obj);
  648. // let obj1 = {
  649. // title: "待机时长(小时)",
  650. // type: "line",
  651. // value: arrjddj,
  652. // };
  653. // series.push(obj1);
  654. // this.getQuietAirStandbyLineEchart(xAxis, series);
  655. },
  656. getQuietAirStandbyLineEchart(xAxis, series) {
  657. let option = {
  658. backgroundColor: this.showWhite ? "#fff" : "",
  659. color: ["#05bb4c", "#4b55ae"],
  660. title: {
  661. text: "损失电量分析",
  662. textAlign: "left",
  663. textStyle: {
  664. color: this.showWhite ? "#000" : "#fff",
  665. },
  666. },
  667. tooltip: {
  668. trigger: "axis",
  669. },
  670. legend: {
  671. right: "20",
  672. data: ["静风时长(小时)", "待机时长(小时)"],
  673. },
  674. xAxis: {
  675. type: "category",
  676. boundaryGap: false,
  677. data: xAxis,
  678. },
  679. yAxis: {
  680. type: "value",
  681. },
  682. series: series,
  683. };
  684. // 基于准备好的dom,初始化echarts实例
  685. let dom = document.getElementById("jfdjEchart");
  686. dom.removeAttribute("_echarts_instance_");
  687. let myChart = echarts.init(dom, this.showWhite ? "" : "dark");
  688. myChart.setOption(option);
  689. this.img2 = myChart.getDataURL({
  690. pixelRatio: 2, // 导出的图片分辨率比例,默认为 1。
  691. backgroundColor: "#999999", // 导出的图片背景色,默认使用 option 里的 backgroundColor
  692. });
  693. window.addEventListener("resize", function () {
  694. myChart.resize();
  695. });
  696. },
  697. },
  698. };
  699. </script>
  700. <style lang="less">
  701. .exportPDF {
  702. float: right;
  703. margin-right: 35px;
  704. margin-top: 10px;
  705. .buttons {
  706. background-color: rgba(5, 187, 76, 1);
  707. border: 1px solid #3b6c53;
  708. color: #fff;
  709. font-size: 14px;
  710. border: none;
  711. width: 108px;
  712. min-height: 25px !important;
  713. // &:hover {
  714. // background-color: rgba(5, 187, 76, 0.6);
  715. // color: #000;
  716. // }
  717. }
  718. }
  719. .monthReport {
  720. padding: 0 23px;
  721. padding-top: 20px;
  722. .dialogHeader {
  723. text-align: center;
  724. color: #fff;
  725. font-weight: 600;
  726. font-size: 16px;
  727. margin-bottom: 40px;
  728. span {
  729. position: relative;
  730. left: 5%;
  731. }
  732. }
  733. .el-button {
  734. min-height: 25px;
  735. height: 25px;
  736. span {
  737. position: relative;
  738. top: -8px;
  739. }
  740. }
  741. .monthReportTable {
  742. margin: 10px;
  743. padding-bottom: 10px;
  744. background: rgba(0, 0, 0, 0.4);
  745. }
  746. .monthReportMsage {
  747. .textIndent {
  748. color: #fff;
  749. font-size: 16px;
  750. line-height: 30px;
  751. text-indent: 2em;
  752. }
  753. }
  754. .monthReportEcharts {
  755. margin-top: 20px;
  756. }
  757. .el-loading-mask {
  758. background-color: rgba(0, 0, 0, 1) !important;
  759. }
  760. }
  761. .monthReportWhite {
  762. padding: 0 23px;
  763. background: #fff;
  764. padding-top: 20px;
  765. .dialogHeader {
  766. text-align: center;
  767. color: #000;
  768. font-weight: 600;
  769. font-size: 16px;
  770. margin-bottom: 40px;
  771. span {
  772. position: relative;
  773. left: 5%;
  774. }
  775. }
  776. .el-button {
  777. min-height: 25px;
  778. height: 25px;
  779. span {
  780. position: relative;
  781. top: -8px;
  782. }
  783. }
  784. .monthReportTable {
  785. margin: 10px;
  786. padding-bottom: 10px;
  787. background: rgba(255, 255, 255, 0.4);
  788. .el-table th.el-table__cell {
  789. border-right: 0px !important;
  790. }
  791. .el-table__header-wrapper {
  792. .has-gutter {
  793. tr {
  794. color: #000;
  795. th {
  796. background: #9e9d9d;
  797. color: #000;
  798. font-weight: 700;
  799. }
  800. }
  801. }
  802. }
  803. .el-table__body-wrapper {
  804. .el-table__body {
  805. tr {
  806. td {
  807. color: #000;
  808. }
  809. // &.el-table__row--striped {
  810. // background: #464444;
  811. // }
  812. }
  813. }
  814. }
  815. }
  816. .monthReportMsage {
  817. .textIndent {
  818. color: #000;
  819. font-size: 16px;
  820. line-height: 30px;
  821. text-indent: 2em;
  822. }
  823. }
  824. .monthReportEcharts {
  825. margin-top: 20px;
  826. }
  827. .el-loading-mask {
  828. // background-color: rgba(0,0,0,1) !important;
  829. }
  830. }
  831. </style>