index.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. <template>
  2. <div class="cutInAndOutAnalysis">
  3. <div class="cutInAndOutAnalysis_top">
  4. <el-select
  5. size="mini"
  6. v-model="companyVal"
  7. placeholder="请选择"
  8. @change="changeCompan"
  9. >
  10. <el-option
  11. v-for="item in companyOptions"
  12. :key="item.id"
  13. :label="item.aname"
  14. :value="item.id"
  15. >
  16. </el-option>
  17. </el-select>
  18. <!-- <div class="tabCut">
  19. <div :class="tabIndex === val.id ? 'active' : ''" v-for="val in tabOptions" :key="val.id"><span>{{
  20. val.name
  21. }}</span></div>
  22. </div> -->
  23. <div class="station">
  24. 场站:
  25. <el-select
  26. size="mini"
  27. v-model="stationVal"
  28. placeholder="请选择"
  29. clearable
  30. @change="changeStation"
  31. >
  32. <el-option
  33. v-for="item in stationOptions"
  34. :key="item.id"
  35. :label="item.name"
  36. :value="item.id"
  37. >
  38. </el-option>
  39. </el-select>
  40. </div>
  41. <div class="station">
  42. 时间:
  43. <div class="">
  44. <el-date-picker
  45. size="mini"
  46. v-model="pickerTimer"
  47. type="date"
  48. value-format="YYYY-MM-DD"
  49. placeholder="选择日期"
  50. popper-class="date-select"
  51. >
  52. </el-date-picker>
  53. </div>
  54. </div>
  55. <div class="but">
  56. <el-button round size="mini" class="buttons sousuo" @click="seachData"
  57. >搜索</el-button
  58. >
  59. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  60. >导出</el-button
  61. >
  62. </div>
  63. </div>
  64. <div
  65. style="
  66. background: rgba(0, 0, 0, 0.4);
  67. height: calc(100% - 43px);
  68. padding-bottom: 15px;
  69. "
  70. >
  71. <div class="cutInAndOut_title clearfix">
  72. <div class="leftContent floatLeft"><span>切入切出分析</span></div>
  73. <div class="rightContent floatRight"></div>
  74. </div>
  75. <div class="economicTable1">
  76. <el-table
  77. :data="cutInAndOutAnalysisData"
  78. stripe
  79. size="mini"
  80. height="calc(100% - 40px - 20px)"
  81. ref="cutInAndOut_table"
  82. style="width: 100%"
  83. >
  84. <el-table-column
  85. align="center"
  86. prop="wtcode"
  87. label="风机"
  88. width="150"
  89. fixed="left"
  90. >
  91. </el-table-column>
  92. <el-table-column
  93. v-for="(item, index) in tableHeader"
  94. :key="index"
  95. sortable
  96. :prop="item.code"
  97. :label="item.title"
  98. align="center"
  99. >
  100. <template #header="scope">
  101. <div
  102. v-for="(item, index) in headerArr(scope.column.label)"
  103. :key="index"
  104. >
  105. {{ item }}
  106. </div>
  107. </template>
  108. </el-table-column>
  109. <el-table-column
  110. align="center"
  111. prop="windturbineId"
  112. label="操作"
  113. width="70"
  114. fixed="right"
  115. >
  116. <template #default="scope">
  117. <!-- <el-button class="historyBtn" @click="seachHistoryData(scope.row)">历史</el-button> -->
  118. <span class="historyBtn1" @click="seachHistoryData(scope.row)"
  119. >历史</span
  120. >
  121. </template>
  122. </el-table-column>
  123. </el-table>
  124. <el-pagination
  125. @size-change="handleSizeChange"
  126. @current-change="handleCurrentChange"
  127. :current-page="page.currentPage"
  128. :page-size="page.pagesize"
  129. layout="total, prev, pager, next, jumper"
  130. :total="page.total"
  131. >
  132. </el-pagination>
  133. </div>
  134. </div>
  135. <el-dialog
  136. v-model="dialogVisible"
  137. width="100%"
  138. custom-class="modal"
  139. fullscreen
  140. :close-on-click-modal="false"
  141. >
  142. <template #title>
  143. <div class="dialog-title">
  144. <img class="dialog-title-img" src="@assets/imgs/dialog-title.png" />
  145. <div class="title">历史数据查询</div>
  146. </div>
  147. </template>
  148. <div style="height: 100%">
  149. <history-detail
  150. ref="historyDetail"
  151. :historyCompanyOptions="companyOptions"
  152. :historyStationOptions="stationOptions"
  153. :tableHeader="tableHeader"
  154. >
  155. </history-detail>
  156. </div>
  157. </el-dialog>
  158. </div>
  159. </template>
  160. <script>
  161. import {
  162. getApicompanyslist,
  163. getApiwpByCplistlist,
  164. getApioutputSpeedlist,
  165. } from "@/api/monthlyPerformanceAnalysis";
  166. import HistoryDetail from "./historyDetail.vue";
  167. import utils from "@/utills/downXlsx";
  168. import dayjs from "dayjs";
  169. export default {
  170. name: "cutInAndOutAnalysis", //切入切出分析
  171. components: {
  172. HistoryDetail,
  173. },
  174. data() {
  175. return {
  176. companyVal: "",
  177. companyOptions: [],
  178. stationVal: "",
  179. stationOptions: [],
  180. pickerTimer: "",
  181. cutInAndOutAnalysisData: [],
  182. showBtn: true,
  183. tabIndex: -1,
  184. tabOptions: [
  185. { id: -1, name: "风电" },
  186. { id: -2, name: "光伏" },
  187. ],
  188. tableHeader: [
  189. { title: "总小风切入", code: "inputSmall" },
  190. { title: "总大风切入", code: "inputBig" },
  191. { title: "总小风切出", code: "outputSmall" },
  192. { title: "总大风切出", code: "outputBig" },
  193. { title: "日小风切入", code: "dayInputSmall" },
  194. { title: "日小风切入合格率", code: "dayInputSmallRatio" },
  195. { title: "日小风切出", code: "dayOutputSmall" },
  196. { title: "日小风切出合格率", code: "dayOutputSmallRatio" },
  197. { title: "日大风切入", code: "dayInputBig" },
  198. { title: "日大风切入合格率", code: "dayInputBigRatio" },
  199. { title: "日大风切出", code: "dayOutputBig" },
  200. { title: "日大风切出合格率", code: "dayOutputBigRatio" },
  201. { title: "月小风切入", code: "monthInputSmall" },
  202. { title: "月小风切入合格率", code: "monthInputSmallRatio" },
  203. { title: "月大风切入", code: "monthInputBig" },
  204. { title: "月大风切入合格率", code: "monthInputBigRatio" },
  205. { title: "月小风切出", code: "monthOutputSmall" },
  206. { title: "月小风切出合格率", code: "monthOutputSmallRatio" },
  207. { title: "月大风切出", code: "monthOutputBig" },
  208. { title: "月大风切出合格率", code: "monthOutputBigRatio" },
  209. { title: "年小风切入", code: "yearInputSmall" },
  210. { title: "年小风切入合格率", code: "yearInputSmallRatio" },
  211. { title: "年大风切入", code: "yearInputBig" },
  212. { title: "年大风切入合格率", code: "yearInputBigRatio" },
  213. { title: "年小风切出", code: "yearOutputSmall" },
  214. { title: "年小风切出合格率", code: "yearOutputSmallRatio" },
  215. { title: "年大风切出", code: "yearOutputBig" },
  216. { title: "年大风切出合格率", code: "yearOutputBigRatio" },
  217. ],
  218. page: {
  219. pagesize: 21,
  220. currentPage: 1,
  221. total: 0,
  222. },
  223. dialogTitle: "",
  224. dialogVisible: false,
  225. isFullScreen: false,
  226. };
  227. },
  228. created() {
  229. const clientHeight =
  230. document.documentElement.clientHeight || document.body.clientHeight;
  231. if (clientHeight === 1080) {
  232. this.isFullScreen = true;
  233. } else {
  234. this.isFullScreen = false;
  235. }
  236. this.getCompanyData();
  237. },
  238. mounted() {
  239. window.onresize = () => {
  240. const clientHeight =
  241. document.documentElement.clientHeight || document.body.clientHeight;
  242. this.isFullScreen = window.screen.height == clientHeight;
  243. this.getTableData();
  244. };
  245. },
  246. computed: {
  247. pageHeight() {
  248. return {
  249. height: document.documentElement.clientHeight - 130 + "px",
  250. };
  251. },
  252. },
  253. methods: {
  254. headerArr(label) {
  255. let arr = [];
  256. let num = 0;
  257. if (label.length > 2) {
  258. if (label.indexOf("风") > 0) {
  259. arr.push(label.substring(0, label.indexOf("风") + 1));
  260. num = label.indexOf("风");
  261. }
  262. if (label.indexOf("入") > 0 || label.indexOf("出") > 0) {
  263. if (label.indexOf("入") > 0) {
  264. arr.push(label.substring(num + 1, label.indexOf("入") + 1));
  265. num = label.indexOf("入");
  266. } else {
  267. arr.push(label.substring(num + 1, label.indexOf("出") + 1));
  268. num = label.indexOf("出");
  269. }
  270. }
  271. arr.push(label.substring(num + 1, label.length));
  272. } else {
  273. arr.push(label);
  274. }
  275. return arr;
  276. },
  277. // 获取公司列表
  278. async getCompanyData() {
  279. this.companyOptions = [];
  280. this.pickerTimer = dayjs(new Date().getTime() - 86400000).format(
  281. "YYYY-MM-DD"
  282. );
  283. const { data: datas } = await getApicompanyslist();
  284. this.companyOptions = datas.data;
  285. this.companyVal = datas.data[0]?.id;
  286. this.getStationData(this.companyVal);
  287. },
  288. changeCompan(val) {
  289. this.companyVal = val;
  290. this.stationVal = "";
  291. this.getStationData();
  292. },
  293. // changeBtn(id) {
  294. // this.tabIndex = id;
  295. // this.stationVal = "";
  296. // this.getStationData();
  297. // },
  298. async getStationData() {
  299. this.stationOptions = [];
  300. let params = {
  301. type: this.tabIndex,
  302. companyid: this.companyVal,
  303. };
  304. const { data: datas } = await getApiwpByCplistlist(params);
  305. this.stationOptions = datas.data;
  306. this.stationVal = datas.data[0].id;
  307. this.getTableData();
  308. },
  309. changeStation(val) {
  310. this.stationVal = val;
  311. this.getTableData();
  312. },
  313. seachData() {
  314. this.getTableData();
  315. },
  316. async getTableData() {
  317. let params = {
  318. cmId: this.companyVal,
  319. type: this.tabIndex,
  320. pageNum: this.page.currentPage,
  321. pageSize: this.page.pagesize,
  322. recorddate: this.pickerTimer,
  323. wpId: this.stationVal,
  324. };
  325. const { data: datas } = await getApioutputSpeedlist(params);
  326. this.cutInAndOutAnalysisData = datas.data.records;
  327. this.page.total = datas.data.total;
  328. },
  329. handleSizeChange(val) {
  330. this.page.pagesize = val;
  331. this.getTableData();
  332. },
  333. handleCurrentChange(val) {
  334. this.page.currentPage = val;
  335. this.getTableData();
  336. },
  337. //转换时间
  338. getchangeTime(date) {
  339. var y = date.getFullYear();
  340. var m = date.getMonth() + 1;
  341. m = m < 10 ? "0" + m : m;
  342. var d = date.getDate();
  343. d = d < 10 ? "0" + d : d;
  344. return y + "-" + m + "-" + d;
  345. },
  346. seachHistoryData(row) {
  347. this.dialogVisible = true;
  348. this.$nextTick(() => {
  349. let startT =
  350. new Date(this.pickerTimer).getTime() - 10 * 24 * 60 * 60 * 1000;
  351. this.$refs.historyDetail.pickerTimer = [
  352. this.getchangeTime(new Date(startT)),
  353. this.pickerTimer,
  354. ];
  355. this.$refs.historyDetail.init(row);
  356. });
  357. },
  358. downXlsxFn() {
  359. let header = [];
  360. this.tableHeader.forEach((it) => {
  361. if (it.title !== "操作") {
  362. header.push(it.title);
  363. }
  364. });
  365. if (this.cutInAndOutAnalysisData.length > 0) {
  366. utils.exportExcel(
  367. this.$refs["cutInAndOut_table"].$el,
  368. header,
  369. "切入切出分析"
  370. );
  371. }
  372. },
  373. },
  374. };
  375. </script>
  376. <style lang="less">
  377. .cutInAndOutAnalysis {
  378. padding: 0 30px;
  379. height: 100%;
  380. .cutInAndOut_title {
  381. padding-left: 10px;
  382. .leftContent {
  383. width: 242px;
  384. height: 41px;
  385. line-height: 41px;
  386. background: url("../../../../assets/imgs/title_left_bg.png");
  387. span {
  388. font-size: 16px;
  389. font-family: Microsoft YaHei;
  390. font-weight: 400;
  391. color: #ffffff;
  392. margin-left: 25px;
  393. }
  394. }
  395. .floatLeft {
  396. float: left;
  397. }
  398. .floatRight {
  399. float: right;
  400. }
  401. .rightContent {
  402. width: 212px;
  403. height: 28px;
  404. margin-top: 13px;
  405. background: url("../../../../assets/imgs/title_right_bg.png");
  406. }
  407. }
  408. .clearfix::after {
  409. content: "";
  410. clear: both;
  411. height: 0;
  412. line-height: 0;
  413. visibility: hidden;
  414. display: block;
  415. }
  416. .clearfix {
  417. zoom: 1;
  418. }
  419. .cutInAndOutAnalysis_top {
  420. display: flex;
  421. flex-direction: row;
  422. align-items: center;
  423. margin-top: 10px;
  424. margin-bottom: 10px;
  425. .station {
  426. display: flex;
  427. flex-direction: row;
  428. align-items: center;
  429. font-size: 14px;
  430. font-family: Microsoft YaHei;
  431. font-weight: 400;
  432. color: #b3b3b3;
  433. margin-right: 10px;
  434. margin-left: 10px;
  435. }
  436. .tabCut {
  437. display: inline-block;
  438. margin: 0 10px;
  439. div {
  440. display: inline-block;
  441. width: 60px;
  442. height: 27px;
  443. border: 1px solid #274934;
  444. text-align: center;
  445. line-height: 25px;
  446. cursor: pointer;
  447. }
  448. div:nth-child(1) {
  449. border-radius: 13px 0px 0px 13px;
  450. }
  451. div:nth-child(2) {
  452. border-radius: 0px 13px 13px 0px;
  453. cursor: not-allowed;
  454. }
  455. .active {
  456. background-color: rgba(5, 187, 76, 0.9);
  457. color: #fff;
  458. }
  459. }
  460. .search-input {
  461. margin-left: 10px;
  462. .el-input__inner {
  463. width: 175px;
  464. }
  465. .el-input__suffix {
  466. right: -50px;
  467. }
  468. }
  469. .but {
  470. display: flex;
  471. flex-direction: row;
  472. align-content: center;
  473. margin-left: 20px;
  474. .buttons:nth-child(1) {
  475. background: rgba(5, 187, 76, 0.6);
  476. border: 1px solid #3b6c53;
  477. border-radius: 13px;
  478. color: #fff;
  479. &:hover {
  480. background: rgba(5, 187, 76, 0.9);
  481. border-radius: 13px;
  482. color: #fff;
  483. }
  484. }
  485. .buttons:nth-child(2) {
  486. background: rgba(67, 81, 107, 0.3);
  487. border: 1px solid #3b6c53;
  488. border-radius: 13px;
  489. font-size: 14px;
  490. color: #b3b3b3;
  491. }
  492. }
  493. }
  494. .economicTable1 {
  495. height: calc(100% - 32px);
  496. .el-pagination {
  497. display: flex;
  498. justify-content: flex-end;
  499. padding-right: 40px;
  500. padding-top: 20px;
  501. .el-pagination__total,
  502. .el-pagination__jump {
  503. color: #fff;
  504. }
  505. }
  506. .el-table__fixed,
  507. .el-table__fixed-right {
  508. background: rgba(0, 0, 0, 1);
  509. border-left: 2px solid #000;
  510. height: calc(100% - 15px) !important;
  511. }
  512. .el-table__fixed::before {
  513. background-color: #2a2a2a;
  514. }
  515. .el-table__fixed-right::before {
  516. background-color: #2a2a2a;
  517. }
  518. }
  519. .el-overlay {
  520. .el-overlay-dialog {
  521. overflow-y: hidden !important;
  522. .el-dialog {
  523. margin-top: 0 !important;
  524. .el-dialog__body {
  525. height: calc(100% - 51px - 32px);
  526. }
  527. }
  528. }
  529. }
  530. .el-picker__popper .el-date-range-picker__header .el-picker-panel__icon-btn {
  531. color: #fff;
  532. }
  533. .el-picker__popper .el-date-table .in-range div {
  534. background: #43516b;
  535. }
  536. }
  537. .historyBtn1 {
  538. cursor: pointer;
  539. color: #05bb4c;
  540. }
  541. </style>