index.vue 20 KB

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