index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. <template>
  2. <div class="stationControl">
  3. <div class="stationControl_top">
  4. <el-select
  5. size="mini"
  6. v-model="tabIndex"
  7. placeholder="请选择"
  8. clearable
  9. @change="getTableData"
  10. >
  11. <el-option
  12. v-for="item in tabOptions"
  13. :key="item.id"
  14. :label="item.name"
  15. :value="item.id"
  16. >
  17. </el-option>
  18. </el-select>
  19. <div class="station">
  20. 时间:
  21. <div class="">
  22. <el-date-picker
  23. size="mini"
  24. v-model="pickerTime"
  25. type="month"
  26. value-format="YYYY-MM"
  27. placeholder="选择年月"
  28. popper-class="date-select"
  29. >
  30. </el-date-picker>
  31. </div>
  32. </div>
  33. <div class="but">
  34. <el-button round size="mini" class="buttons" @click="getTableData"
  35. >搜索</el-button
  36. >
  37. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  38. >导出</el-button
  39. >
  40. </div>
  41. </div>
  42. <div
  43. style="
  44. background: rgba(0, 0, 0, 0.4);
  45. height: calc(100% - 43px);
  46. padding-bottom: 15px;
  47. "
  48. >
  49. <div class="stationControl_title clearfix">
  50. <div class="leftContent floatLeft">
  51. <span>{{ tabIndex == -1 ? "风场" : "电站" }}管控KPI</span>
  52. </div>
  53. </div>
  54. <div class="economicTable1">
  55. <el-table
  56. :data="stationControlData"
  57. stripe
  58. size="mini"
  59. height="calc(100% - 40px - 20px)"
  60. ref="stationControl_table"
  61. style="width: 100%"
  62. border
  63. >
  64. <el-table-column
  65. prop="stationName"
  66. label="场站"
  67. align="center"
  68. show-overflow-tooltip
  69. />
  70. <el-table-column
  71. prop="years"
  72. label="年份"
  73. align="center"
  74. width="58"
  75. show-overflow-tooltip
  76. />
  77. <el-table-column
  78. prop="month"
  79. label="月份"
  80. align="center"
  81. width="58"
  82. show-overflow-tooltip
  83. />
  84. <el-table-column
  85. v-for="(item, index) in tableHeader"
  86. :key="index"
  87. :label="item.title"
  88. align="center"
  89. >
  90. <el-table-column
  91. v-for="(subItem, subIndex) in tabIndex == -1
  92. ? item.children
  93. : item.childrenG
  94. ? item.childrenG
  95. : item.children"
  96. :key="subIndex"
  97. :prop="subItem.code"
  98. :label="subItem.title"
  99. align="center"
  100. show-overflow-tooltip
  101. >
  102. <el-table-column
  103. v-for="(thiItem, thiIndex) in subItem.children"
  104. :key="thiIndex"
  105. sortable
  106. width="45"
  107. :prop="thiItem.code"
  108. :label="thiItem.title"
  109. align="center"
  110. show-overflow-tooltip
  111. >
  112. </el-table-column>
  113. </el-table-column>
  114. </el-table-column>
  115. <el-table-column
  116. prop="remark"
  117. label="总评分"
  118. align="center"
  119. width="100"
  120. show-overflow-tooltip
  121. />
  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. :page-sizes="[21, 50, 100, 500]"
  129. layout="total, sizes, prev, pager, next, jumper"
  130. :total="page.total"
  131. >
  132. </el-pagination>
  133. </div>
  134. </div>
  135. </div>
  136. </template>
  137. <script>
  138. import utils from "@/utills/downXlsx";
  139. import dayjs from "dayjs";
  140. import { stationKPI, stationXklKPI } from "@/api/kpiApi/index.js";
  141. export default {
  142. name: "stationControl", //场站管控KPI
  143. components: {},
  144. data() {
  145. return {
  146. stationVal: "",
  147. stationOptions: [],
  148. pickerTime: "",
  149. stationControlData: [],
  150. tabIndex: -1,
  151. tabOptions: [
  152. { id: -1, name: "风电" },
  153. { id: -2, name: "光伏" },
  154. ],
  155. tableHeader: [
  156. {
  157. title: "安全指标",
  158. children: [
  159. {
  160. title: "人身、设备事故",
  161. children: [
  162. { title: "值(次)", code: "rssbsg_value" },
  163. { title: "评分", code: "rssbsg_mark" },
  164. ],
  165. },
  166. {
  167. title: "设备一类障碍",
  168. children: [
  169. { title: "值(次)", code: "sbylza_value" },
  170. { title: "评分", code: "sbylza_mark" },
  171. ],
  172. },
  173. ],
  174. },
  175. {
  176. title: "生产效率指标",
  177. children: [
  178. {
  179. title: "风能利用率",
  180. children: [
  181. { title: "值(%)", code: "fnlyl_value" },
  182. { title: "评分", code: "fnlyl_mark" },
  183. ],
  184. },
  185. {
  186. title: "计划检修损失率",
  187. children: [
  188. { title: "值(%)", code: "jhjxssl_value" },
  189. { title: "评分", code: "jhjxssl_mark" },
  190. ],
  191. },
  192. {
  193. title: "非计划检修损失率",
  194. children: [
  195. { title: "值(%)", code: "fjhjxssl_value" },
  196. { title: "评分", code: "fjhjxssl_mark" },
  197. ],
  198. },
  199. {
  200. title: "限电损失率",
  201. children: [
  202. { title: "值(%)", code: "xdssl_value" },
  203. { title: "评分", code: "xdssl_mark" },
  204. ],
  205. },
  206. {
  207. title: "性能损失率",
  208. children: [
  209. { title: "值(%)", code: "xnssl_value" },
  210. { title: "评分", code: "xnssl_mark" },
  211. ],
  212. },
  213. {
  214. title: "复位及时率",
  215. children: [
  216. { title: "值(%)", code: "fwjsl_value" },
  217. { title: "评分", code: "fwjsl_mark" },
  218. ],
  219. },
  220. {
  221. title: "状态转换及时率",
  222. children: [
  223. { title: "值(%)", code: "ztzhjsl_value" },
  224. { title: "评分", code: "ztzhjsl_mark" },
  225. ],
  226. },
  227. {
  228. title: "故障处理及时率",
  229. children: [
  230. { title: "值(%)", code: "gzcljsl_value" },
  231. { title: "评分", code: "gzcljsl_mark" },
  232. ],
  233. },
  234. {
  235. title: "MTBF",
  236. children: [
  237. { title: "值(小时)", code: "mtbf_value" },
  238. { title: "评分", code: "mtbf_mark" },
  239. ],
  240. },
  241. {
  242. title: "MTTF",
  243. children: [
  244. { title: "值(小时)", code: "mttf_value" },
  245. { title: "评分", code: "mttf_mark" },
  246. ],
  247. },
  248. {
  249. title: "MTTR",
  250. children: [
  251. { title: "值(小时)", code: "mttr_value" },
  252. { title: "评分", code: "mttr_mark" },
  253. ],
  254. },
  255. ],
  256. childrenG: [
  257. {
  258. title: "光能利用率",
  259. children: [
  260. { title: "值(%)", code: "gnlyl_value" },
  261. { title: "评分", code: "gnlyl_mark" },
  262. ],
  263. },
  264. {
  265. title: "计划检修损失率",
  266. children: [
  267. { title: "值(%)", code: "jhjxssl_value" },
  268. { title: "评分", code: "jhjxssl_mark" },
  269. ],
  270. },
  271. {
  272. title: "非计划检修损失率",
  273. children: [
  274. { title: "值(%)", code: "fjhjxssl_value" },
  275. { title: "评分", code: "fjhjxssl_mark" },
  276. ],
  277. },
  278. {
  279. title: "限电损失率",
  280. children: [
  281. { title: "值(%)", code: "xdssl_value" },
  282. { title: "评分", code: "xdssl_mark" },
  283. ],
  284. },
  285. {
  286. title: "性能损失率",
  287. children: [
  288. { title: "值(%)", code: "xnssl_value" },
  289. { title: "评分", code: "xnssl_mark" },
  290. ],
  291. },
  292. {
  293. title: "复位及时率",
  294. children: [
  295. { title: "值(%)", code: "fwjsl_value" },
  296. { title: "评分", code: "fwjsl_mark" },
  297. ],
  298. },
  299. {
  300. title: "状态转换及时率",
  301. children: [
  302. { title: "值(%)", code: "ztzhjsl_value" },
  303. { title: "评分", code: "ztzhjsl_mark" },
  304. ],
  305. },
  306. {
  307. title: "故障处理及时率",
  308. children: [
  309. { title: "值(%)", code: "gzcljsl_value" },
  310. { title: "评分", code: "gzcljsl_mark" },
  311. ],
  312. },
  313. {
  314. title: "MTBF",
  315. children: [
  316. { title: "值(小时)", code: "mtbf_value" },
  317. { title: "评分", code: "mtbf_mark" },
  318. ],
  319. },
  320. {
  321. title: "MTTF",
  322. children: [
  323. { title: "值(小时)", code: "mttf_value" },
  324. { title: "评分", code: "mttf_mark" },
  325. ],
  326. },
  327. {
  328. title: "MTTR",
  329. children: [
  330. { title: "值(小时)", code: "mttr_value" },
  331. { title: "评分", code: "mttr_mark" },
  332. ],
  333. },
  334. ],
  335. },
  336. {
  337. title: "综合分析指标",
  338. children: [
  339. {
  340. title: "设备利用小时",
  341. children: [
  342. { title: "值(小时)", code: "sblyxs_value" },
  343. { title: "评分", code: "sblyxs_mark" },
  344. ],
  345. },
  346. {
  347. title: "综合厂用电率",
  348. children: [
  349. { title: "值(%)", code: "zhcydl_value" },
  350. { title: "评分", code: "zhcydl_mark" },
  351. ],
  352. },
  353. {
  354. title: "设备可利用率",
  355. children: [
  356. { title: "值(%)", code: "sbklyl_value" },
  357. { title: "评分", code: "sbklyl_mark" },
  358. ],
  359. },
  360. {
  361. title: "等效可用系数",
  362. children: [
  363. { title: "值(%)", code: "dxkyxs_value" },
  364. { title: "评分", code: "dxkyxs_mark" },
  365. ],
  366. },
  367. {
  368. title: "隐患发现准确率",
  369. children: [
  370. { title: "值(%)", code: "yhfxzql_value" },
  371. { title: "评分", code: "yhfxzql_mark" },
  372. ],
  373. },
  374. {
  375. title: "风功率预测准确率",
  376. children: [
  377. { title: "值(%)", code: "fglyczql_value" },
  378. { title: "评分", code: "fglyczql_mark" },
  379. ],
  380. },
  381. ],
  382. childrenG: [
  383. {
  384. title: "设备利用小时",
  385. children: [
  386. { title: "值(小时)", code: "sblyxs_value" },
  387. { title: "评分", code: "sblyxs_mark" },
  388. ],
  389. },
  390. {
  391. title: "综合厂用电率",
  392. children: [
  393. { title: "值(%)", code: "zhcydl_value" },
  394. { title: "评分", code: "zhcydl_mark" },
  395. ],
  396. },
  397. {
  398. title: "设备可利用率",
  399. children: [
  400. { title: "值(%)", code: "sbklyl_value" },
  401. { title: "评分", code: "sbklyl_mark" },
  402. ],
  403. },
  404. {
  405. title: "等效可用系数",
  406. children: [
  407. { title: "值(%)", code: "dxkyxs_value" },
  408. { title: "评分", code: "dxkyxs_mark" },
  409. ],
  410. },
  411. {
  412. title: "隐患发现准确率",
  413. children: [
  414. { title: "值(%)", code: "yhfxzql_value" },
  415. { title: "评分", code: "yhfxzql_mark" },
  416. ],
  417. },
  418. {
  419. title: "光功率预测准确率",
  420. children: [
  421. { title: "值(%)", code: "gglyczql_value" },
  422. { title: "评分", code: "gglyczql_mark" },
  423. ],
  424. },
  425. ],
  426. },
  427. {
  428. title: "自然环境影响指标",
  429. children: [
  430. {
  431. title: "平均风速",
  432. children: [
  433. { title: "值(m/s)", code: "pjfs_value" },
  434. { title: "评分", code: "pjfs_mark" },
  435. ],
  436. },
  437. {
  438. title: "静风频率",
  439. children: [
  440. { title: "值(%)", code: "jfpl_value" },
  441. { title: "评分", code: "jfpl_mark" },
  442. ],
  443. },
  444. {
  445. title: "有效风时率",
  446. children: [
  447. { title: "值(%)", code: "yxfsl_value" },
  448. { title: "评分", code: "yxfsl_mark" },
  449. ],
  450. },
  451. ],
  452. childrenG: [
  453. {
  454. title: "累计辐射总量",
  455. children: [
  456. { title: "值(兆焦/平米)", code: "ljfszl_value" },
  457. { title: "评分", code: "ljfszl_mark" },
  458. ],
  459. },
  460. ],
  461. },
  462. ],
  463. page: {
  464. pagesize: 21,
  465. currentPage: 1,
  466. total: 0,
  467. },
  468. };
  469. },
  470. created() {
  471. this.pickerTime = dayjs().format("YYYY-MM");
  472. },
  473. mounted() {},
  474. computed: {},
  475. methods: {
  476. handleSizeChange(val) {
  477. this.page.currentPage = 1;
  478. this.page.pagesize = val;
  479. this.getTableData();
  480. },
  481. handleCurrentChange(val) {
  482. this.page.currentPage = val;
  483. this.getTableData();
  484. },
  485. getTableData() {
  486. let that = this;
  487. let params = {
  488. pageNum: that.page.currentPage,
  489. pageSize: that.page.pagesize,
  490. years: that.pickerTime
  491. ? this.pickerTime.substring(0, this.pickerTime.indexOf("-")) * 1
  492. : null,
  493. month: that.pickerTime
  494. ? this.pickerTime.substring(
  495. this.pickerTime.indexOf("-") + 1,
  496. this.pickerTime.length
  497. ) * 1
  498. : null,
  499. };
  500. if (that.tabIndex == -1) {
  501. stationKPI(params).then((res) => {
  502. if (res) {
  503. that.stationControlData = res.data.records;
  504. that.page.total = res.data.total;
  505. }
  506. });
  507. } else {
  508. stationXklKPI(params).then((res) => {
  509. if (res) {
  510. that.stationControlData = res.data.records;
  511. that.page.total = res.data.total;
  512. }
  513. });
  514. }
  515. },
  516. downXlsxFn() {
  517. let header = [];
  518. this.tableHeader.forEach((it) => {
  519. if (it.title !== "操作") {
  520. header.push(it.title);
  521. }
  522. });
  523. if (this.stationControlData.length > 0) {
  524. utils.exportExcel(
  525. this.$refs["stationControl_table"].$el,
  526. header,
  527. `${this.pickerTime}${
  528. this.tabIndex == -1 ? "风场" : "电站"
  529. }综合评价KPI`
  530. );
  531. }
  532. },
  533. },
  534. };
  535. </script>
  536. <style lang="less" scoped>
  537. .stationControl {
  538. padding: 0 20px;
  539. height: 100%;
  540. .stationControl_title {
  541. .leftContent {
  542. width: 242px;
  543. height: 41px;
  544. line-height: 41px;
  545. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  546. span {
  547. font-size: 16px;
  548. font-family: Microsoft YaHei;
  549. font-weight: 400;
  550. color: #05bb4c;
  551. margin-left: 25px;
  552. }
  553. }
  554. .floatLeft {
  555. float: left;
  556. }
  557. .floatRight {
  558. float: right;
  559. }
  560. .rightContent {
  561. width: 212px;
  562. height: 28px;
  563. margin-top: 13px;
  564. background: url("../../../../assets/imgs/title_right_bg.png");
  565. }
  566. }
  567. .clearfix::after {
  568. content: "";
  569. clear: both;
  570. height: 0;
  571. line-height: 0;
  572. visibility: hidden;
  573. display: block;
  574. }
  575. .clearfix {
  576. zoom: 1;
  577. }
  578. .stationControl_top {
  579. display: flex;
  580. flex-direction: row;
  581. align-items: center;
  582. margin-top: 10px;
  583. margin-bottom: 10px;
  584. .station {
  585. display: flex;
  586. flex-direction: row;
  587. align-items: center;
  588. font-size: 14px;
  589. font-family: Microsoft YaHei;
  590. font-weight: 400;
  591. color: #b3b3b3;
  592. margin-right: 10px;
  593. margin-left: 10px;
  594. }
  595. .tabCut {
  596. display: inline-block;
  597. margin: 0 10px;
  598. div {
  599. display: inline-block;
  600. width: 60px;
  601. height: 27px;
  602. border: 1px solid #274934;
  603. text-align: center;
  604. line-height: 25px;
  605. cursor: pointer;
  606. }
  607. div:nth-child(1) {
  608. border-radius: 13px 0px 0px 13px;
  609. }
  610. div:nth-child(2) {
  611. border-radius: 0px 13px 13px 0px;
  612. cursor: not-allowed;
  613. }
  614. .active {
  615. background-color: rgba(5, 187, 76, 0.9);
  616. color: #fff;
  617. }
  618. }
  619. .search-input {
  620. margin-left: 10px;
  621. .el-input__inner {
  622. width: 175px;
  623. }
  624. .el-input__suffix {
  625. right: -50px;
  626. }
  627. }
  628. .but {
  629. display: flex;
  630. flex-direction: row;
  631. align-content: center;
  632. margin-left: 20px;
  633. .buttons {
  634. background-color: rgba(5, 187, 76, 0.2);
  635. border: 1px solid #3b6c53;
  636. color: #b3b3b3;
  637. font-size: 14px;
  638. &:hover,
  639. &.active {
  640. background-color: rgba(5, 187, 76, 0.5);
  641. color: #ffffff;
  642. }
  643. }
  644. }
  645. }
  646. .economicTable1 {
  647. height: calc(100% - 42px);
  648. .el-table ::v-deep {
  649. .el-table__header {
  650. border-collapse: collapse;
  651. }
  652. .el-table__body-wrapper {
  653. .el-table__body {
  654. font-size: 13px;
  655. // border: 1px solid #eceef5;
  656. // border-collapse: collapse;
  657. }
  658. }
  659. th {
  660. height: 20px;
  661. line-height: 20px;
  662. font-size: 14px;
  663. &.el-table__cell {
  664. border: 1px solid rgba(255, 255, 255, 0.8) !important;
  665. &:nth-child(1) {
  666. border-left-width: 0 !important;
  667. // border-left-width: 0 !important;
  668. }
  669. &.is-leaf {
  670. // border-bottom-width: 1px !important;
  671. }
  672. }
  673. }
  674. td {
  675. height: 25px;
  676. line-height: 25px;
  677. font-size: 14px;
  678. &.el-table__cell {
  679. border-bottom: 1px solid #434141 !important;
  680. &:nth-child(1) {
  681. border-left-width: 0 !important;
  682. // border-left-width: 0 !important;
  683. }
  684. &.is-leaf {
  685. // border-bottom-width: 1px !important;
  686. }
  687. }
  688. }
  689. }
  690. .el-pagination {
  691. display: flex;
  692. justify-content: flex-end;
  693. padding-right: 40px;
  694. padding-top: 20px;
  695. .el-pagination__total,
  696. .el-pagination__jump {
  697. color: #fff;
  698. }
  699. }
  700. .el-table__fixed,
  701. .el-table__fixed-right {
  702. background: rgba(0, 0, 0, 1);
  703. border-left: 2px solid #000;
  704. height: calc(100% - 15px) !important;
  705. }
  706. .el-table__fixed::before {
  707. background-color: #2a2a2a;
  708. }
  709. .el-table__fixed-right::before {
  710. background-color: #2a2a2a;
  711. }
  712. }
  713. .el-overlay {
  714. .el-overlay-dialog {
  715. overflow-y: hidden !important;
  716. .el-dialog {
  717. margin-top: 0 !important;
  718. .el-dialog__body {
  719. height: calc(100% - 51px - 32px);
  720. }
  721. }
  722. }
  723. }
  724. .el-picker__popper .el-date-range-picker__header .el-picker-panel__icon-btn {
  725. color: #fff;
  726. }
  727. .el-picker__popper .el-date-table .in-range div {
  728. background: #43516b;
  729. }
  730. }
  731. .historyBtn1 {
  732. cursor: pointer;
  733. color: #05bb4c;
  734. }
  735. </style>