index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. <template>
  2. <div class="optimizationSuggestions">
  3. <div class="main_top">
  4. <div class="form-wrapper">
  5. <div class="station">
  6. 场站:
  7. <el-select v-model="reportStation" placeholder="选择场站">
  8. <el-option v-for="item in stationList" :key="item.id" :label="item.name" :value="item.id">
  9. </el-option>
  10. </el-select>
  11. </div>
  12. <div class="station">
  13. 机组:
  14. <el-select v-model="windStation" placeholder="选择机组" @change="changeWt">
  15. <el-option v-for="item in windList" :key="item.id" :label="item.name" :value="item.id">
  16. </el-option>
  17. </el-select>
  18. </div>
  19. <div class="station">
  20. 报告月份
  21. <el-date-picker style="width: 120px" v-model="reportParamDate" type="month" value-format="YYYY-MM"
  22. placeholder="请选择" />
  23. </div>
  24. <div class="but">
  25. <el-button type="primary" @click="handleReportOp">查询</el-button>
  26. <el-button style="width: 100px" type="danger" @click="exportPDFop" :loading="loading">导出 PDF
  27. </el-button>
  28. </div>
  29. </div>
  30. </div>
  31. <div class="infoBox">
  32. <div id="pdfDom" ref="pdfContent" :style="!theme ? 'background-color: #040c0b' : 'background-color: #fff'">
  33. <h2 style="
  34. font-weight: bolder;
  35. text-align: center;
  36. margin-bottom: 20px;
  37. text-align: center;
  38. " :style="!theme ? 'color: #fff' : 'color: #000'">
  39. {{ OperationName }}
  40. </h2>
  41. <!-- 单机运行指标性能分析 -->
  42. <h3 style="
  43. text-indent: 2em;
  44. font-weight: bolder;
  45. margin-bottom: 10px;
  46. margin-top: 10px;
  47. " :style="!theme ? 'color: #fff' : 'color: #000'">
  48. 单机运行指标性能分析
  49. </h3>
  50. <div class="warn-table">
  51. <el-table class="toolSty" :data="jjyxList" border style="width: 100%; margin: 10px 0" stripe
  52. :header-cell-style="{
  53. padding: '4px',
  54. fontSize: '12px',
  55. fontWeight: bold,
  56. border: '0.5px solid rgba(0,0,0,.5) !important',
  57. }" :cell-style="{
  58. height: '40px',
  59. padding: '3px',
  60. fontSize: '12px',
  61. 'border-top': '0px solid rgba(0,0,0,.5)',
  62. 'border-bottom': '1px solid rgba(0,0,0,.5)',
  63. 'border-right': '1px solid rgba(0,0,0,.5)',
  64. }">
  65. <el-table-column v-for="(item, index) in jjyxTableColumn" :key="index" :label="item.name"
  66. :width="item.width" align="center">
  67. <template #default="scope">
  68. <span>
  69. {{ scope.row[item.code] ? scope.row[item.code] : "-" }}
  70. </span>
  71. </template>
  72. </el-table-column>
  73. </el-table>
  74. </div>
  75. <!-- 本月运行情况总结 -->
  76. <h3 style="
  77. text-indent: 2em;
  78. font-weight: bolder;
  79. margin-bottom: 10px;
  80. margin-top: 10px;
  81. " :style="!theme ? 'color: #fff' : 'color: #000'">
  82. 本月运行情况总结:
  83. </h3>
  84. <p style="font-size: 16px;font-weight: bolder;margin: 10px 0 10px 40px"
  85. :style="!theme ? 'color: #fff' : 'color: #000'">{{operationStatus}}</p>
  86. <p style="font-size: 16px;font-weight: bolder;margin: 10px 0 10px 40px"
  87. :style="!theme ? 'color: #fff' : 'color: #000'">{{operationStatus2}}</p>
  88. <div id="powerAndspeed" style="width:100%;height:500px"></div>
  89. </div>
  90. </div>
  91. </div>
  92. </template>
  93. <script>
  94. import html2canvas from 'html2canvas';
  95. import jsPDF from 'jspdf';
  96. import dayjs from "dayjs";
  97. import {
  98. getWpList,
  99. getWtList,
  100. apiGeWarningeconreportReport
  101. } from "@/api/zhbj";
  102. import jsonData from "./dataJson.json";
  103. export default {
  104. name: "yhjyReport",
  105. data() {
  106. return {
  107. stationList: [],
  108. windList: [],
  109. reportStation: "",
  110. windStation: "",
  111. windStationName: "",
  112. OperationName: "经济运行分析报告",
  113. jjyxTableColumn: jsonData.jjyxTableColumn,
  114. jjyxList: [],
  115. operationStatus: "",
  116. operationStatus2: "",
  117. loading: false,
  118. reportParamDate: dayjs()
  119. .subtract(1, "month")
  120. .startOf("month")
  121. .format("YYYY-MM"),
  122. };
  123. },
  124. created() {
  125. this.theme = this.$store.state.theme;
  126. },
  127. mounted() {
  128. this.funGetStation();
  129. },
  130. methods: {
  131. changeWt(value) {
  132. this.windList.forEach(it => {
  133. if (value === it.id) {
  134. this.windStationName = it.name
  135. }
  136. })
  137. },
  138. /**场站 */
  139. funGetStation() {
  140. let that = this;
  141. // this.renderReportPage({
  142. // data: jsonData.data
  143. // });
  144. that.stationList = [];
  145. that.windStation = ""
  146. getWpList().then((res) => {
  147. if (res) {
  148. that.stationList = res.data;
  149. if (that.stationList.length) {
  150. that.reportStation = that.stationList[0].id;
  151. that.funGetWind(that.reportStation);
  152. }
  153. }
  154. });
  155. },
  156. funGetWind(wpId) {
  157. let that = this;
  158. that.windList = []
  159. that.windStation = ""
  160. getWtList({
  161. wpId: wpId
  162. }).then((res) => {
  163. if (res) {
  164. that.windList = res.data.data;
  165. if (that.windList.length) {
  166. that.windStation = that.windList[0].id;
  167. that.windStationName = that.windList[0].name;
  168. that.handleReportOp();
  169. }
  170. }
  171. });
  172. },
  173. async exportPDFop() {
  174. this.loading = true;
  175. try {
  176. // 获取要转换为PDF的内容
  177. const element = this.$refs.pdfContent;
  178. // 保存当前滚动位置
  179. const originalScrollTop = window.scrollY;
  180. // 将页面滚动到顶部
  181. window.scrollTo(0, 0);
  182. // 设置元素的高度为内容的实际高度
  183. const originalHeight = element.style.height;
  184. const originalOverflow = element.style.overflow;
  185. if (originalHeight) {
  186. element.style.height = `${element.scrollHeight}px`;
  187. }
  188. if (originalOverflow) {
  189. element.style.overflow = 'hidden';
  190. }
  191. // 使用html2canvas将HTML内容转换为canvas
  192. const canvas = await html2canvas(element, {
  193. scale: 2, // 提高分辨率
  194. logging: true, // 开启日志记录
  195. useCORS: true // 处理跨域图片
  196. });
  197. // 恢复原来的样式
  198. element.style.height = originalHeight || '';
  199. element.style.overflow = originalOverflow || '';
  200. // 恢复滚动位置
  201. window.scrollTo(0, originalScrollTop);
  202. // 将canvas转换为Data URL
  203. const imgData = canvas.toDataURL('image/png');
  204. // 创建一个新的jsPDF实例
  205. const doc = new jsPDF('p', 'mm', 'a4');
  206. // 计算图片在PDF中的位置和大小
  207. const imgProps = doc.getImageProperties(imgData);
  208. const pdfWidth = doc.internal.pageSize.getWidth();
  209. const pdfHeight = (imgProps.height * pdfWidth) / imgProps.width;
  210. // 计算每页的高度
  211. const pageHeight = doc.internal.pageSize.getHeight();
  212. let heightLeft = pdfHeight;
  213. // 添加第一页
  214. doc.addImage(imgData, 'PNG', 0, 0, pdfWidth, pdfHeight);
  215. // 添加后续页面
  216. while (heightLeft > pageHeight) {
  217. heightLeft -= pageHeight;
  218. doc.addPage();
  219. doc.addImage(imgData, 'PNG', 0, -pdfHeight + heightLeft, pdfWidth, pdfHeight);
  220. }
  221. // 保存PDF文件
  222. doc.save('经济运行分析报告.pdf');
  223. this.loading = false;
  224. } catch (error) {
  225. console.error('Error generating PDF:', error);
  226. this.loading = false
  227. }
  228. },
  229. handleReportOp() {
  230. if (this.reportParamDate) {
  231. this.OperationName = "";
  232. this.jjyxList = [];
  233. let params = {
  234. reportParamDate: this.reportParamDate,
  235. windStation: this.windStation
  236. }
  237. apiGeWarningeconreportReport(params).then((res) => {
  238. this.renderReportPage(res);
  239. })
  240. .catch(() => {
  241. this.renderReportPage({
  242. data: jsonData.data,
  243. });
  244. });
  245. }
  246. },
  247. renderReportPage(res) {
  248. let date = this.reportParamDate.split("-");
  249. this.OperationName =
  250. date[0] +
  251. "年" +
  252. date[1] +
  253. "月" +
  254. this.windStationName +
  255. "指标性能分析及运行情况报告";
  256. this.jjyxList = res.data.lb;
  257. this.operationStatus = res.data.wz1
  258. this.operationStatus2 = res.data.wz2
  259. let tbdata = res.data.tb
  260. let xAxis = []
  261. let servesBar = []
  262. let servesLine = []
  263. tbdata.forEach((it, index) => {
  264. xAxis.push((dayjs(it.recordDate).format('D')) + '日')
  265. servesBar.push(it.rfdl)
  266. servesLine.push(it.pjfs)
  267. })
  268. this.getcharts(xAxis, servesBar, servesLine)
  269. },
  270. getcharts(xAxis, servesBar, servesLine) {
  271. let option = {
  272. tooltip: {
  273. trigger: 'axis',
  274. },
  275. legend: {
  276. textStyle: {
  277. color: '#fff'
  278. },
  279. data: ['发电量(万kwh)', '风速(m/s)']
  280. },
  281. xAxis: [{
  282. type: 'category',
  283. data: xAxis,
  284. axisTick: {
  285. show: true, // 显示刻度线
  286. lineStyle: {
  287. color: '#fff' // 设置刻度线颜色为红色
  288. }
  289. },
  290. axisLine: {
  291. lineStyle: {
  292. color: '#fff' // 设置轴线颜色为蓝色(可选)
  293. }
  294. },
  295. axisPointer: {
  296. type: 'shadow'
  297. }
  298. }],
  299. yAxis: [{
  300. type: 'value',
  301. name: '发电量(万kwh)',
  302. min: 0,
  303. axisTick: {
  304. show: true, // 显示刻度线
  305. lineStyle: {
  306. color: '#fff' // 设置y轴刻度线颜色为红色
  307. }
  308. },
  309. axisLine: {
  310. show: true, // 如果需要显示轴线
  311. lineStyle: {
  312. color: '#fff' // 设置y轴轴线颜色为蓝色(可选)
  313. }
  314. },
  315. splitLine: {
  316. show: false, // 如果需要显示分割线
  317. lineStyle: {
  318. color: ['#333'] // 设置分割线颜色(可选)
  319. }
  320. }
  321. },
  322. {
  323. type: 'value',
  324. name: '风速(m/s)',
  325. min: 0,
  326. axisTick: {
  327. show: true, // 显示刻度线
  328. lineStyle: {
  329. color: '#fff' // 设置y轴刻度线颜色为红色
  330. }
  331. },
  332. axisLine: {
  333. show: true, // 如果需要显示轴线
  334. lineStyle: {
  335. color: '#fff' // 设置y轴轴线颜色为蓝色(可选)
  336. }
  337. },
  338. splitLine: {
  339. show: false, // 如果需要显示分割线
  340. lineStyle: {
  341. color: ['#333'] // 设置分割线颜色(可选)
  342. }
  343. }
  344. }
  345. ],
  346. series: [{
  347. name: '发电量(万kwh)',
  348. type: 'bar',
  349. data: servesBar
  350. },
  351. {
  352. name: '风速(m/s)',
  353. type: 'line',
  354. yAxisIndex: 1,
  355. data: servesLine
  356. }
  357. ]
  358. };
  359. // 基于准备好的dom,初始化echarts实例
  360. let dom = document.getElementById('powerAndspeed');
  361. dom.removeAttribute("_echarts_instance_") ?
  362. dom.removeAttribute("_echarts_instance_") :
  363. "";
  364. let myChart = this.$echarts.init(dom, this.echartsTheme);
  365. myChart.setOption(option);
  366. window.addEventListener("resize", function () {
  367. myChart.resize();
  368. });
  369. },
  370. },
  371. };
  372. </script>
  373. <style lang="less" scoped>
  374. .optimizationSuggestions {
  375. height: 100%;
  376. display: flex;
  377. flex-direction: column;
  378. justify-content: flex-start;
  379. align-content: center;
  380. .main_top {
  381. height: 40px;
  382. display: flex;
  383. align-items: center;
  384. .form-wrapper {
  385. display: flex;
  386. flex-direction: row;
  387. align-items: center;
  388. margin: 10px 0 10px 20px;
  389. .station {
  390. display: flex;
  391. flex-direction: row;
  392. align-items: center;
  393. font-size: 14px;
  394. font-family: Microsoft YaHei;
  395. font-weight: 400;
  396. color: #b3b3b3;
  397. margin-right: 10px;
  398. }
  399. .search-input {
  400. margin-left: 10px;
  401. }
  402. .but {
  403. display: flex;
  404. flex-direction: row;
  405. align-content: center;
  406. margin-left: 20px;
  407. }
  408. .buttons {
  409. background-color: rgba(5, 187, 76, 0.2);
  410. border: 1px solid #3b6c53;
  411. color: #b3b3b3;
  412. font-size: 14px;
  413. &:hover {
  414. background-color: rgba(5, 187, 76, 0.5);
  415. color: #ffffff;
  416. }
  417. }
  418. }
  419. }
  420. .infoBox {
  421. height: calc(100% - 80px);
  422. overflow: scroll;
  423. #pdfDom {
  424. margin: 20px;
  425. }
  426. }
  427. &.themeLight {
  428. .topPsty {
  429. color: #2778ff;
  430. background: #ffffff;
  431. }
  432. }
  433. &.themeDark {
  434. .topPsty {
  435. color: #1c99ff;
  436. background: #1e2126;
  437. }
  438. }
  439. }
  440. </style>
  441. <style lang="less">
  442. .el-overlay {
  443. .el-overlay-dialog {
  444. .reportDia {
  445. margin-top: 0 !important;
  446. }
  447. }
  448. }
  449. .reportDia {
  450. .repoerDateBox {
  451. width: calc(100% - 40px);
  452. display: flex;
  453. justify-content: center;
  454. align-items: center;
  455. font-size: 12px;
  456. }
  457. }
  458. </style>