index.vue 15 KB

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