index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. <template>
  2. <div class="comAnalysise">
  3. <div class="comAnalysis_tops">
  4. <div class="station">
  5. 时间
  6. <div class="search-input">
  7. <el-date-picker
  8. v-model="pickerTimer"
  9. type="date"
  10. format="YYYY-MM-DD"
  11. placeholder="选择日期"
  12. popper-class="date-select"
  13. >
  14. </el-date-picker>
  15. </div>
  16. </div>
  17. <div class="but">
  18. <el-button round size="mini" class="buttons" @click="seachData"
  19. >搜索</el-button
  20. >
  21. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  22. >导出</el-button
  23. >
  24. </div>
  25. </div>
  26. <div class="systemData bodys">
  27. <div class="line">
  28. <div class="leftContent"><span>新能源生产日报</span></div>
  29. </div>
  30. <el-table
  31. :data="stationDatas"
  32. ref="month_table"
  33. style="width: 100%"
  34. empty-text="暂无数据"
  35. height="81vh"
  36. :row-class-name="tableRowClassName"
  37. :header-cell-style="headerStyle"
  38. >
  39. <el-table-column
  40. v-for="(item, index) in stationData"
  41. :key="index"
  42. :prop="item.tagCode"
  43. align="center"
  44. :width="item.width"
  45. header-align="center"
  46. class-name="add"
  47. style="width: 100%"
  48. empty-text="暂无数据"
  49. height="81vh"
  50. >
  51. <template #header>
  52. <div>
  53. <div v-if="item.tagName.length > 6">
  54. {{ item.tagName }}
  55. <span v-if="item.valueUnit">({{ item.valueUnit }})</span>
  56. </div>
  57. <div v-else>
  58. <div
  59. style="
  60. white-space: nowrap;
  61. text-overflow: ellipsis;
  62. overflow: hidden;
  63. "
  64. >
  65. {{ item.tagName }}
  66. </div>
  67. <div v-if="item.valueUnit">({{ item.valueUnit }})</div>
  68. </div>
  69. </div>
  70. </template>
  71. </el-table-column>
  72. </el-table>
  73. <!-- <el-pagination-->
  74. <!-- @size-change="handleSizeChange"-->
  75. <!-- @current-change="handleCurrentChange"-->
  76. <!-- :current-page="page.currentPage"-->
  77. <!-- :page-size="page.pagesize"-->
  78. <!-- layout="total, prev, pager, next, jumper"-->
  79. <!-- :total="page.total">-->
  80. <!-- </el-pagination>-->
  81. </div>
  82. </div>
  83. </template>
  84. <script>
  85. import { getNemDailyReportData } from "@api/reportForms";
  86. import utils from "@/utills/downXlsx";
  87. export default {
  88. name: "newEnergyDaily", //新能源日报
  89. data() {
  90. return {
  91. rowClass: "",
  92. pickerTimer: "",
  93. stationDatas: [],
  94. stationData: [
  95. {
  96. tagName: "风场名称",
  97. tagCode: "tagNames",
  98. valueUnit: "",
  99. width: "97%",
  100. },
  101. {
  102. tagName: "日平均风速",
  103. tagCode: "rpjfs",
  104. valueUnit: "m/s",
  105. width: "83%",
  106. },
  107. {
  108. tagName: "日发电量",
  109. tagCode: "rfdldb",
  110. valueUnit: "万kWh",
  111. width: "77%",
  112. },
  113. {
  114. tagName: "月累计发电量",
  115. tagCode: "yfdldb",
  116. valueUnit: "万kWh",
  117. width: "105%",
  118. },
  119. {
  120. tagName: "年累计发电量",
  121. tagCode: "nfdldb",
  122. valueUnit: "万kWh",
  123. width: "105%",
  124. },
  125. {
  126. tagName: "日上网电量",
  127. tagCode: "rswdldb",
  128. valueUnit: "万kWh",
  129. width: "97%",
  130. },
  131. {
  132. tagName: "月累计上网电量",
  133. tagCode: "yswdldb",
  134. valueUnit: "万kWh",
  135. width: "105%",
  136. },
  137. {
  138. tagName: "年累计上网电量",
  139. tagCode: "nswdldb",
  140. valueUnit: "万kWh",
  141. width: "105%",
  142. },
  143. {
  144. tagName: "综合厂用电量",
  145. tagCode: "rzhcydldb",
  146. valueUnit: "万kWh",
  147. width: "97%",
  148. },
  149. {
  150. tagName: "月累计综合厂用电量",
  151. tagCode: "yzhcydldb",
  152. valueUnit: "万kWh",
  153. width: "111%",
  154. },
  155. {
  156. tagName: "SCADA日发电量",
  157. tagCode: "rfdl",
  158. valueUnit: "万kWh",
  159. width: "105%",
  160. },
  161. {
  162. tagName: "SCADA月累计发电量",
  163. tagCode: "yfdl",
  164. valueUnit: "万kWh",
  165. width: "113%",
  166. },
  167. {
  168. tagName: "SCADA年累计发电量",
  169. tagCode: "nfdl",
  170. valueUnit: "万kWh",
  171. width: "113%",
  172. },
  173. {
  174. tagName: "SCADA综合厂用电量",
  175. tagCode: "sacdazhcydl",
  176. valueUnit: "万kWh",
  177. width: "113%",
  178. },
  179. {
  180. tagName: "SCADA月累计综合厂用电量",
  181. tagCode: "sacdayzhcydl",
  182. valueUnit: "万kWh",
  183. width: "131%",
  184. },
  185. {
  186. tagName: "SCADA综合厂用电率",
  187. tagCode: "scadlv",
  188. valueUnit: "%",
  189. width: "95%",
  190. },
  191. {
  192. tagName: "日限电损失电量",
  193. tagCode: "rxdssdl",
  194. valueUnit: "万kWh",
  195. width: "97%",
  196. },
  197. {
  198. tagName: "月累计限电损失电量",
  199. tagCode: "yxdssdl",
  200. valueUnit: "万kWh",
  201. width: "111%",
  202. },
  203. {
  204. tagName: "年累计限电损失电量",
  205. tagCode: "nxdssdl",
  206. valueUnit: "万kWh",
  207. width: "111%",
  208. },
  209. ],
  210. isFullScreen: false,
  211. pageSize: 25,
  212. allStation: [],
  213. stationDatasd: [],
  214. };
  215. },
  216. created() {
  217. this.pickerTimer = new Date();
  218. this.getNemDailyReportData();
  219. this.$nextTick(() => this.addRollListener());
  220. },
  221. mounted() {
  222. window.onresize = () => {
  223. this.getNemDailyReportData();
  224. };
  225. },
  226. methods: {
  227. addRollListener() {
  228. const dom = document.getElementsByClassName("el-table__body-wrapper")[0];
  229. dom.addEventListener("scroll", () => {
  230. const scrollTop = dom.scrollTop;
  231. const offsetHeight = dom.offsetHeight;
  232. const clientHeight = dom.clientHeight;
  233. const scrollHeight = dom.scrollHeight;
  234. if (
  235. clientHeight + scrollTop + 1 > scrollHeight ||
  236. offsetHeight + scrollTop >= scrollHeight
  237. ) {
  238. this.pageSize++;
  239. this.getNemDailyReportData();
  240. }
  241. });
  242. },
  243. downXlsxFn() {
  244. this.stationDatas = this.allStation;
  245. let headers = [];
  246. this.stationData.forEach((it) => {
  247. headers.push(it.tagName + it.valueUnit);
  248. });
  249. setTimeout(() => {
  250. if (this.stationDatas.length > 0) {
  251. utils.exportExcel(this.$refs["month_table"].$el, headers, "生产日报");
  252. }
  253. }, 1000);
  254. },
  255. async getNemDailyReportData() {
  256. const { data } = await getNemDailyReportData(
  257. this.getchangeTime(this.pickerTimer)
  258. );
  259. if (data.length >= 1) {
  260. data?.forEach((value) => {
  261. value.tagNames = value.projectName;
  262. if (value.projectName == "") {
  263. value.tagNames = "合计";
  264. }
  265. for (let key in value) {
  266. if (
  267. key == "rfdldb" ||
  268. key == "rxdssdl" ||
  269. key == "yxdssdl" ||
  270. key == "nxdssdl"
  271. ) {
  272. value[key] = (value[key] / 10000).toFixed(2);
  273. } else if (key == "rpjfs") {
  274. value[key] = value[key].toFixed(2);
  275. } else if (typeof value[key] === "number") {
  276. value[key] = (value[key] / 10000).toFixed(4);
  277. }
  278. }
  279. value.scadlv =
  280. value.rfdl != 0
  281. ? ((value.sacdazhcydl / value.rfdl) * 100).toFixed(2)
  282. : 0;
  283. });
  284. this.allStation = data;
  285. this.stationDatasd = this.deepClone(data);
  286. this.stationDatas = this.stationDatasd.splice(0, this.pageSize);
  287. } else {
  288. this.stationDatas = [];
  289. this.allStation = [];
  290. }
  291. },
  292. deepClone(ob) {
  293. var obj = JSON.stringify(ob);
  294. var objClone = JSON.parse(obj);
  295. return objClone;
  296. },
  297. tableRowClassName({ row, rowIndex }) {
  298. if (row.projectName == "") {
  299. return "success-row";
  300. } else if (rowIndex === "") {
  301. return "";
  302. }
  303. return "";
  304. },
  305. //转换时间
  306. getchangeTime(date) {
  307. var y = date.getFullYear();
  308. var m = date.getMonth() + 1;
  309. var d = date.getDate();
  310. m = m < 10 ? "0" + m : m;
  311. d = d < 10 ? "0" + d : d;
  312. return y + "-" + m + "-" + d;
  313. },
  314. seachData() {
  315. this.getNemDailyReportData();
  316. },
  317. headerStyle({ row, column, rowIndex, columnIndex }) {
  318. if (columnIndex < 3) {
  319. return { "backdrop-filter": "blur(10px)", padding: "6px 0" };
  320. } else {
  321. return { padding: "6px 0" };
  322. }
  323. },
  324. },
  325. computed: {
  326. pageHeight() {
  327. return {
  328. height: document.documentElement.clientHeight - 130 + "px",
  329. };
  330. },
  331. },
  332. };
  333. </script>
  334. <style lang="less">
  335. .el-table .success-row {
  336. background: rgba(83, 89, 104, 0.3) !important;
  337. }
  338. .comAnalysise {
  339. padding: 0 23px;
  340. .systemData {
  341. margin: 0 5px 5px 5px;
  342. padding-bottom: 10px;
  343. .el-table--mini {
  344. margin: 5px;
  345. .el-table__header-wrapper {
  346. tr {
  347. background: rgba(83, 89, 104, 0.3) !important;
  348. th {
  349. vertical-align: top !important;
  350. }
  351. .cell {
  352. color: #b3b3b3;
  353. font-family: MicrosoftYaHei;
  354. font-size: 14px;
  355. }
  356. }
  357. }
  358. .el-table__body-wrapper {
  359. tr {
  360. &:nth-child(2n) {
  361. background: rgba(83, 89, 104, 0.05) !important;
  362. }
  363. .cell {
  364. color: #d8d8d9;
  365. font-family: ArialMT;
  366. font-size: 13px;
  367. height: 25px !important;
  368. }
  369. }
  370. }
  371. }
  372. .el-pagination {
  373. display: flex;
  374. justify-content: flex-end;
  375. margin-right: 40px;
  376. margin-top: -40px;
  377. .btn-prev,
  378. .btn-next,
  379. .btn-quickprev,
  380. .btn-quicknext,
  381. .el-pager,
  382. .number {
  383. background: rgba(58, 63, 75, 0.4);
  384. color: #fff;
  385. border-radius: 2px;
  386. }
  387. .el-pager .active {
  388. background: #083c94;
  389. color: #fff;
  390. border-radius: 2px;
  391. }
  392. .el-pagination__total,
  393. .el-pagination__jump {
  394. color: #fff;
  395. .el-input__inner {
  396. background: rgba(58, 63, 75, 0.2);
  397. border: 1px solid #3e4349;
  398. color: #fff;
  399. border-radius: 2px;
  400. }
  401. }
  402. }
  403. }
  404. }
  405. .comAnalysis_tops {
  406. display: flex;
  407. flex-direction: row;
  408. align-items: center;
  409. margin-top: 10px;
  410. margin-bottom: 10px;
  411. .station {
  412. display: flex;
  413. flex-direction: row;
  414. align-items: center;
  415. font-size: 14px;
  416. font-family: Microsoft YaHei;
  417. font-weight: 400;
  418. color: #b3b3b3;
  419. margin-right: 10px;
  420. margin-left: 10px;
  421. }
  422. .tabCut {
  423. display: inline-block;
  424. margin: 0 10px;
  425. div {
  426. display: inline-block;
  427. width: 60px;
  428. height: 27px;
  429. border: 1px solid #274934;
  430. text-align: center;
  431. line-height: 25px;
  432. cursor: pointer;
  433. }
  434. div:nth-child(1) {
  435. border-radius: 13px 0px 0px 13px;
  436. border-right-width: 0;
  437. }
  438. div:nth-child(2) {
  439. border-radius: 0px 13px 13px 0px;
  440. cursor: not-allowed;
  441. }
  442. .active {
  443. background-color: rgba(5, 187, 76, 0.9);
  444. color: #fff;
  445. }
  446. }
  447. .search-input {
  448. margin-left: 10px;
  449. .el-input__inner {
  450. width: 175px;
  451. }
  452. .el-input__suffix {
  453. right: -50px;
  454. }
  455. }
  456. .but {
  457. display: flex;
  458. flex-direction: row;
  459. align-content: center;
  460. margin-left: 20px;
  461. .buttons:nth-child(1) {
  462. background: rgba(5, 187, 76, 0.6);
  463. border: 1px solid #3b6c53;
  464. border-radius: 13px;
  465. color: #fff;
  466. &:hover {
  467. background: rgba(5, 187, 76, 0.9);
  468. border-radius: 13px;
  469. color: #fff;
  470. }
  471. }
  472. .buttons:nth-child(2) {
  473. background: rgba(67, 81, 107, 0.3) !important;
  474. border: 1px solid #3b6c53;
  475. border-radius: 13px;
  476. font-size: 14px;
  477. color: #b3b3b3;
  478. }
  479. }
  480. }
  481. .line {
  482. display: flex;
  483. flex-direction: row;
  484. align-items: center;
  485. justify-content: space-between;
  486. width: 100%;
  487. margin-bottom: 5px;
  488. .leftContent {
  489. width: 242px;
  490. height: 41px;
  491. display: flex;
  492. align-items: center;
  493. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  494. span {
  495. font-size: 16px;
  496. font-family: Microsoft YaHei;
  497. font-weight: 400;
  498. color: #ffffff;
  499. margin-left: 25px;
  500. }
  501. }
  502. }
  503. .systemData {
  504. width: 100%;
  505. height: calc(100% - 70px);
  506. background-color: rgba(0, 0, 0, 0.45);
  507. padding: 5px;
  508. overflow: hidden;
  509. }
  510. </style>