singleMachineDev.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div class="stationPowerContro" :class="!theme ? 'themeDark' : ''">
  3. <div class="main_top">
  4. <div class="search-item" style="margin-left: 16px">
  5. <span class="label">场站:</span>
  6. <div class="search-content">
  7. <el-select v-model="stationId" style="width: 120px" clearable size="mini" placeholder="全部"
  8. popper-class="select" @change="getWindturbineList">
  9. <el-option v-for="item in stationList" :key="item.id" :value="item.id" :label="item.name">
  10. </el-option>
  11. </el-select>
  12. </div>
  13. </div>
  14. <el-button class="buttons" round size="mini" @click="getStationData">查询</el-button>
  15. </div>
  16. <div class="stationPowerControTable">
  17. <h2 class="tableTitle">{{ stationName }}测风塔单机偏差分析</h2>
  18. <span class="tableUnit">单位:风速m/s,风向°</span>
  19. <div :style="tableHeight">
  20. <div class="tablestyle warn-table" style="margin-top: 5px">
  21. <el-table :data="tableData" v-loading="loading" border style="width: 100%"
  22. :max-height="tableMainHeight" ref="stationPowerTable"
  23. element-loading-background="rgba(0,0,0,.5)"
  24. :header-cell-style="{ 'text-align': 'center', 'font-size': '12px' }" :cell-style="{
  25. 'font-size': '12px',
  26. }" :row-style="{ height: '23px' }">
  27. <el-table-column :prop="item.value" :label="item.name" align="center"
  28. v-for="(item, index) in tableColumn" :key="index">
  29. <template #default="scope">
  30. <span>{{scope.row[item.value]}}</span>
  31. </template>
  32. </el-table-column>
  33. </el-table>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. import {
  41. getWpList,
  42. apiGetwinddirection
  43. } from "@/api/zhbj";
  44. import dayjs from "dayjs";
  45. import * as XLSX from "xlsx";
  46. import {
  47. saveAs
  48. } from "file-saver";
  49. import * as XLSXD from "xlsx-js-style";
  50. import {
  51. forIn
  52. } from '@antv/x6/lib/util/object/object';
  53. export default {
  54. data() {
  55. return {
  56. stationId: "",
  57. stationName: "",
  58. stationList: [],
  59. loading: false,
  60. tableData: [],
  61. tableColumn: [{
  62. value: "name",
  63. name: "名称",
  64. },
  65. {
  66. value: "january",
  67. name: "一月",
  68. },
  69. {
  70. value: "february",
  71. name: "二月",
  72. },
  73. {
  74. value: "march",
  75. name: "三月",
  76. },
  77. {
  78. value: "april",
  79. name: "四月",
  80. },
  81. {
  82. value: "may",
  83. name: "五月",
  84. },
  85. {
  86. value: "june",
  87. name: "六月",
  88. },
  89. {
  90. value: "july",
  91. name: "七月",
  92. },
  93. {
  94. value: "august",
  95. name: "八月",
  96. },
  97. {
  98. value: "september",
  99. name: "九月",
  100. },
  101. {
  102. value: "october",
  103. name: "十月",
  104. },
  105. {
  106. value: "november",
  107. name: "十一月",
  108. },
  109. {
  110. value: "december",
  111. name: "十二月",
  112. }
  113. ]
  114. };
  115. },
  116. created() {
  117. this.funGetStation();
  118. },
  119. computed: {
  120. tableHeight() {
  121. let height = (document.documentElement.clientHeight - 190) / 2 + "px";
  122. return {
  123. width: "100%",
  124. height: height,
  125. };
  126. },
  127. tableMainHeight() {
  128. let height = document.documentElement.clientHeight - 180 + "px";
  129. return height;
  130. },
  131. },
  132. methods: {
  133. /**场站 */
  134. funGetStation() {
  135. let that = this;
  136. that.stationList = [];
  137. that.windStation = ""
  138. getWpList().then((res) => {
  139. if (res) {
  140. that.stationList = res.data;
  141. if (that.stationList.length) {
  142. that.stationId = that.stationList[0].id;
  143. that.stationName = that.stationList[0].name;
  144. that.getStationData()
  145. }
  146. }
  147. });
  148. },
  149. getStationData() {
  150. let that = this;
  151. let params = {
  152. wpid: that.stationId
  153. }
  154. apiGetwinddirection(params).then(res => {
  155. if (res && res.data) {
  156. debugger
  157. for (const key in res.data) {
  158. const element = res.data[key];
  159. let obj = {
  160. name: key,
  161. january: element[0],
  162. february: element[1],
  163. march: element[2],
  164. april: element[3],
  165. may: element[4],
  166. june: element[5],
  167. july: element[6],
  168. august: element[7],
  169. september: element[8],
  170. october: element[9],
  171. november: element[10],
  172. december: element[11],
  173. }
  174. that.tableData.push(obj)
  175. }
  176. }
  177. })
  178. },
  179. seachData() {
  180. this.funGetStation();
  181. },
  182. },
  183. };
  184. </script>
  185. <style lang="less">
  186. .stationPowerContro {
  187. padding: 0 20px 0 20px;
  188. .main_top {
  189. height: 40px;
  190. display: flex;
  191. align-items: center;
  192. .search-item {
  193. display: flex;
  194. margin-right: 10px;
  195. max-width: 450px;
  196. align-items: center;
  197. .label {
  198. margin-right: 10px;
  199. text-align: right;
  200. white-space: nowrap;
  201. // width: 60px;
  202. }
  203. .search-content {
  204. flex: 1;
  205. }
  206. }
  207. }
  208. .stationPowerControSeach {
  209. margin-top: 20px;
  210. .seach_top {
  211. display: flex;
  212. .exceed {
  213. .exceedName {
  214. margin-top: 7px;
  215. font-size: 14px;
  216. margin-left: 10px;
  217. }
  218. display: flex;
  219. margin-right: 20px;
  220. .el-select,
  221. .el-select__wrapper {
  222. height: 32px;
  223. }
  224. .el-date-editor {
  225. height: 32px;
  226. .el-input__icon,
  227. .el-range-separator {
  228. line-height: 30px;
  229. }
  230. }
  231. .select-trigger {
  232. .el-input {
  233. .el-input__wrapper {
  234. height: 30px;
  235. }
  236. }
  237. .el-input__suffix {
  238. .el-input__icon {
  239. line-height: 30px;
  240. }
  241. }
  242. }
  243. }
  244. .el-button {
  245. height: 30px;
  246. padding: 0 20px;
  247. line-height: 5px;
  248. }
  249. }
  250. }
  251. .stationPowerControTable {
  252. .tableTitle {
  253. display: flex;
  254. justify-content: center;
  255. // font-size: 18px;
  256. font-weight: 600;
  257. }
  258. .tableUnit {
  259. font-size: 14px;
  260. }
  261. }
  262. }
  263. .themeDark {
  264. background-image: none;
  265. .stationPowerControSeach {
  266. .exceedName {
  267. color: #fff;
  268. }
  269. }
  270. .stationPowerControTable {
  271. .tableTitle,
  272. .tableUnit {
  273. color: #fff;
  274. }
  275. }
  276. }
  277. .themeLight {
  278. .stationPowerControSeach {
  279. .exceedName {
  280. color: #000;
  281. }
  282. }
  283. .stationPowerControTable {
  284. .tableTitle,
  285. .tableUnit {
  286. color: #000;
  287. }
  288. }
  289. }
  290. </style>