photovoltaic.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <template>
  2. <div class="voltaic-body">
  3. <div class="table-wrapper">
  4. <el-table
  5. :data="tableData"
  6. size="mini"
  7. stripe
  8. width="100%"
  9. height="100%"
  10. @row-click="rowClick"
  11. >
  12. <el-table-column
  13. v-for="(item, index) in tableHead"
  14. :label="item.label"
  15. :prop="item.prop"
  16. :key="index"
  17. header-align="center"
  18. :align="
  19. item.prop == 'zfzd' || item.prop == 'zdfdz' ? 'right' : 'center'
  20. "
  21. show-overflow-tooltip
  22. >
  23. </el-table-column>
  24. </el-table>
  25. </div>
  26. <div class="chart-wrapper">
  27. <div class="left-chart">
  28. <lineCharts
  29. :unit="'W/m²'"
  30. :windCurveValues="lineChart"
  31. :CurveTitle="chartName + '实时光照'"
  32. :color="'#ff8300'"
  33. width="100%"
  34. height="100%"
  35. chartId="photo-fs"
  36. />
  37. </div>
  38. <div class="right-chart">
  39. <barChart
  40. chartName="总辐照度"
  41. width="100%"
  42. height="100%"
  43. :list="barChart"
  44. />
  45. </div>
  46. </div>
  47. </div>
  48. </template>
  49. <script>
  50. import barChart from "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic/components/barChart.vue";
  51. import lineCharts from "@/views/economicsOperation/stationAnalyse/windAndPhotovoltaic/components/lineCharts.vue";
  52. import dayjs from "dayjs";
  53. import {
  54. getVoltaicAnalysis,
  55. getVoltaicAnalysisChart,
  56. } from "@/api/monthlyPerformanceAnalysis.js";
  57. import { FindGroupRealtime } from "@/api/home/home.js";
  58. export default {
  59. name: "Photovoltaic", //光资源分析
  60. components: { lineCharts, barChart },
  61. props: {
  62. date: {
  63. type: String,
  64. },
  65. },
  66. data() {
  67. return {
  68. tableData: [],
  69. tableHead: [
  70. { prop: "name", label: "场站名称" },
  71. { prop: "zfzd", label: "总辐照量(kWh/m²)" },
  72. { prop: "zdfdz", label: "最大辐照(W/m²)" },
  73. { prop: "rcsj", label: "日出时间" },
  74. { prop: "rlsj", label: "日落时间" },
  75. { prop: "cxsj", label: "持续小时数(h)" },
  76. ],
  77. chartName: "总辐照量",
  78. lineChart: [],
  79. barChart: [],
  80. uniformCode: "RPJGZD",
  81. format: "YYYY-MM-DD HH:mm:ss",
  82. };
  83. },
  84. created() {
  85. this.getData();
  86. },
  87. methods: {
  88. getData() {
  89. this.BASE.showLoading();
  90. getVoltaicAnalysis(this.date).then((res) => {
  91. if (res.code == 200) {
  92. this.tableData = res.data
  93. ? res.data.map((item) => {
  94. return {
  95. ...item,
  96. rcsj: dayjs(item.rcsj).format(this.format),
  97. rlsj: dayjs(item.rlsj).format(this.format),
  98. };
  99. })
  100. : [];
  101. this.barChart = res.data
  102. ? res.data.map((item) => {
  103. return {
  104. name: item.name,
  105. value: item.zfzd,
  106. };
  107. })
  108. : [];
  109. this.rowClick(this.tableData[0] || {});
  110. }
  111. });
  112. },
  113. rowClick(row) {
  114. if (Object.keys(row).length) {
  115. getVoltaicAnalysisChart({
  116. wpid: row.wpid,
  117. Data: this.date,
  118. }).then((res) => {
  119. this.BASE.closeLoading();
  120. if (res.code == 200) {
  121. this.chartName = row.name;
  122. this.lineChart = res.data
  123. ? res.data.map((item) => {
  124. return {
  125. dateTime: dayjs(item.time).format("MM-DD HH:mm"),
  126. value: item.value6,
  127. };
  128. })
  129. : [];
  130. }
  131. });
  132. }
  133. },
  134. },
  135. };
  136. </script>
  137. <style lang="less" scoped>
  138. .voltaic-body {
  139. height: 100%;
  140. width: 100%;
  141. display: flex;
  142. flex-direction: column;
  143. .table-wrapper {
  144. height: calc(100% - 500px - 20px);
  145. width: 100%;
  146. margin-bottom: 20px;
  147. }
  148. .chart-wrapper {
  149. height: 500px;
  150. display: flex;
  151. justify-content: space-between;
  152. width: 100%;
  153. .left-chart,
  154. .right-chart {
  155. width: 49%;
  156. height: 100%;
  157. }
  158. }
  159. }
  160. </style>