index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. <template>
  2. <div class="running">
  3. <div class="running_top">
  4. <!-- <el-select
  5. size="mini"
  6. v-model="tabIndex"
  7. placeholder="请选择"
  8. clearable
  9. @change="getTableData"
  10. popper-class="custom-select"
  11. >
  12. <el-option
  13. v-for="item in tabOptions"
  14. :key="item.id"
  15. :label="item.name"
  16. :value="item.id"
  17. >
  18. </el-option>
  19. </el-select> -->
  20. <div class="station">
  21. 时间:
  22. <div class="">
  23. <el-date-picker
  24. size="mini"
  25. v-model="pickerTime"
  26. type="month"
  27. value-format="YYYY-MM"
  28. placeholder="选择年月"
  29. popper-class="date-select"
  30. >
  31. </el-date-picker>
  32. </div>
  33. </div>
  34. <div class="but">
  35. <el-button round size="mini" class="buttons" @click="getTableData"
  36. >搜 索</el-button
  37. >
  38. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  39. >导出</el-button
  40. >
  41. </div>
  42. </div>
  43. <div
  44. style="
  45. background: rgba(0, 0, 0, 0.4);
  46. height: calc(100% - 43px);
  47. padding-bottom: 15px;
  48. "
  49. >
  50. <div class="running_title clearfix">
  51. <div class="leftContent floatLeft"><span>运行KPI</span></div>
  52. </div>
  53. <div class="economicTable1">
  54. <el-table
  55. :data="runningData"
  56. stripe
  57. size="mini"
  58. height="calc(100% - 40px - 20px)"
  59. ref="running_table"
  60. style="width: 100%"
  61. border
  62. >
  63. <el-table-column
  64. prop="stationName"
  65. label="场站"
  66. align="center"
  67. show-overflow-tooltip
  68. />
  69. <el-table-column
  70. prop="runningTeam"
  71. label="运行班组"
  72. align="center"
  73. width="60px"
  74. show-overflow-tooltip
  75. />
  76. <el-table-column
  77. prop="years"
  78. label="年份"
  79. align="center"
  80. width="60px"
  81. show-overflow-tooltip
  82. />
  83. <el-table-column
  84. prop="month"
  85. label="月份"
  86. align="center"
  87. width="60px"
  88. show-overflow-tooltip
  89. />
  90. <el-table-column
  91. v-for="(item, index) in tableHeader"
  92. :key="index"
  93. :label="item.title"
  94. align="center"
  95. >
  96. <el-table-column
  97. v-for="(subItem, subIndex) in item.children"
  98. :key="subIndex"
  99. :prop="subItem.code"
  100. :label="subItem.title"
  101. align="right"
  102. header-align="center"
  103. show-overflow-tooltip
  104. >
  105. <el-table-column
  106. v-for="(thiItem, thiIndex) in subItem.children"
  107. :key="thiIndex"
  108. sortable
  109. width="63"
  110. :prop="thiItem.code"
  111. :label="thiItem.title"
  112. align="right"
  113. header-align="center"
  114. show-overflow-tooltip
  115. >
  116. </el-table-column>
  117. </el-table-column>
  118. </el-table-column>
  119. <el-table-column
  120. prop="remark"
  121. label="总评分"
  122. align="center"
  123. width="100"
  124. show-overflow-tooltip
  125. />
  126. </el-table>
  127. <el-pagination
  128. @size-change="handleSizeChange"
  129. @current-change="handleCurrentChange"
  130. :current-page="page.currentPage"
  131. :page-size="page.pagesize"
  132. :page-sizes="[21, 50, 100, 500]"
  133. layout="total, sizes, prev, pager, next, jumper"
  134. :total="page.total"
  135. >
  136. </el-pagination>
  137. </div>
  138. </div>
  139. </div>
  140. </template>
  141. <script>
  142. import utils from "@/utills/downXlsx";
  143. import dayjs from "dayjs";
  144. import { runningKPI } from "@/api/kpiApi/index.js";
  145. export default {
  146. name: "running", //运行KPI
  147. components: {},
  148. data() {
  149. return {
  150. stationVal: "",
  151. stationOptions: [],
  152. pickerTime: "",
  153. runningData: [],
  154. tabIndex: -1,
  155. tabOptions: [
  156. { id: -1, name: "风电" },
  157. { id: -2, name: "光伏" },
  158. ],
  159. tableHeader: [
  160. {
  161. title: "生产效率指标",
  162. children: [
  163. {
  164. title: "风能利用率",
  165. children: [
  166. { title: "值(%)", code: "fnlyl_value" },
  167. { title: "评分", code: "fnlyl_mark" },
  168. ],
  169. },
  170. {
  171. title: "限电损失率",
  172. children: [
  173. { title: "值(%)", code: "xdssl_value" },
  174. { title: "评分", code: "xdssl_mark" },
  175. ],
  176. },
  177. {
  178. title: "性能损失率",
  179. children: [
  180. { title: "值(%)", code: "xnssl_value" },
  181. { title: "评分", code: "xnssl_mark" },
  182. ],
  183. },
  184. {
  185. title: "复位及时率",
  186. children: [
  187. { title: "值(%)", code: "fwjsl_value" },
  188. { title: "评分", code: "fwjsl_mark" },
  189. ],
  190. },
  191. {
  192. title: "状态转换及时率",
  193. children: [
  194. { title: "值(%)", code: "ztzhjsl_value" },
  195. { title: "评分", code: "ztzhjsl_mark" },
  196. ],
  197. },
  198. {
  199. title: "缺陷下单及时率",
  200. children: [
  201. { title: "值(%)", code: "qxxdjsl_value" },
  202. { title: "评分", code: "qxxdjsl_mark" },
  203. ],
  204. },
  205. {
  206. title: "缺陷验收及时率",
  207. children: [
  208. { title: "值(%)", code: "qxysjsl_value" },
  209. { title: "评分", code: "qxysjsl_mark" },
  210. ],
  211. },
  212. {
  213. title: "平均小风切入风速",
  214. children: [
  215. { title: "值(m/s)", code: "pjxfqrfs_value" },
  216. { title: "评分", code: "pjxfqrfs_mark" },
  217. ],
  218. },
  219. {
  220. title: "MTTF",
  221. children: [
  222. { title: "值(小时)", code: "mttf_value" },
  223. { title: "评分", code: "mttf_mark" },
  224. ],
  225. },
  226. ],
  227. },
  228. {
  229. title: "综合分析指标",
  230. children: [
  231. {
  232. title: "设备利用小时",
  233. children: [
  234. { title: "值(小时)", code: "sblyxs_value" },
  235. { title: "评分", code: "sblyxs_mark" },
  236. ],
  237. },
  238. {
  239. title: "综合厂用电率",
  240. children: [
  241. { title: "值(%)", code: "zhcydl_value" },
  242. { title: "评分", code: "zhcydl_mark" },
  243. ],
  244. },
  245. {
  246. title: "隐患发现准确率",
  247. children: [
  248. { title: "值(%)", code: "yhfxzql_value" },
  249. { title: "评分", code: "yhfxzql_mark" },
  250. ],
  251. },
  252. ],
  253. },
  254. ],
  255. page: {
  256. pagesize: 21,
  257. currentPage: 1,
  258. total: 0,
  259. },
  260. };
  261. },
  262. created() {
  263. this.pickerTime = dayjs().format("YYYY-MM");
  264. },
  265. mounted() {
  266. this.getTableData();
  267. },
  268. computed: {},
  269. methods: {
  270. handleSizeChange(val) {
  271. this.page.currentPage = 1;
  272. this.page.pagesize = val;
  273. this.getTableData();
  274. },
  275. handleCurrentChange(val) {
  276. this.page.currentPage = val;
  277. this.getTableData();
  278. },
  279. getTableData() {
  280. let that = this;
  281. let params = {
  282. pageNum: that.page.currentPage,
  283. pageSize: that.page.pagesize,
  284. years: that.pickerTime
  285. ? this.pickerTime.substring(0, this.pickerTime.indexOf("-")) * 1
  286. : null,
  287. month: that.pickerTime
  288. ? this.pickerTime.substring(
  289. this.pickerTime.indexOf("-") + 1,
  290. this.pickerTime.length
  291. ) * 1
  292. : null,
  293. };
  294. runningKPI(params).then((res) => {
  295. if (res) {
  296. that.runningData = res.data.records;
  297. that.page.total = res.data.total;
  298. }
  299. });
  300. },
  301. downXlsxFn() {
  302. let header = [];
  303. this.tableHeader.forEach((it) => {
  304. header.push(it.title);
  305. });
  306. if (this.runningData.length > 0) {
  307. utils.exportExcel(
  308. this.$refs["running_table"].$el,
  309. header,
  310. `${this.pickerTime}运行评价KPI`
  311. );
  312. }
  313. },
  314. },
  315. };
  316. </script>
  317. <style lang="less" scoped>
  318. .running {
  319. padding: 0 20px;
  320. height: 100%;
  321. .running_title {
  322. .leftContent {
  323. width: 242px;
  324. height: 41px;
  325. line-height: 41px;
  326. background: url("~@/assets/imgs/title_left_bg.png") no-repeat;
  327. span {
  328. font-size: 16px;
  329. font-family: Microsoft YaHei;
  330. font-weight: 400;
  331. color: #05bb4c;
  332. margin-left: 25px;
  333. }
  334. }
  335. .floatLeft {
  336. float: left;
  337. }
  338. .floatRight {
  339. float: right;
  340. }
  341. .rightContent {
  342. width: 212px;
  343. height: 28px;
  344. margin-top: 13px;
  345. background: url("../../../../assets/imgs/title_right_bg.png");
  346. }
  347. }
  348. .clearfix::after {
  349. content: "";
  350. clear: both;
  351. height: 0;
  352. line-height: 0;
  353. visibility: hidden;
  354. display: block;
  355. }
  356. .clearfix {
  357. zoom: 1;
  358. }
  359. .running_top {
  360. display: flex;
  361. flex-direction: row;
  362. align-items: center;
  363. margin-top: 10px;
  364. margin-bottom: 10px;
  365. .station {
  366. display: flex;
  367. flex-direction: row;
  368. align-items: center;
  369. font-size: 14px;
  370. font-family: Microsoft YaHei;
  371. font-weight: 400;
  372. color: #b3b3b3;
  373. margin-right: 10px;
  374. margin-left: 10px;
  375. }
  376. .tabCut {
  377. display: inline-block;
  378. margin: 0 10px;
  379. div {
  380. display: inline-block;
  381. width: 60px;
  382. height: 27px;
  383. border: 1px solid #274934;
  384. text-align: center;
  385. line-height: 25px;
  386. cursor: pointer;
  387. }
  388. div:nth-child(1) {
  389. border-radius: 13px 0px 0px 13px;
  390. }
  391. div:nth-child(2) {
  392. border-radius: 0px 13px 13px 0px;
  393. cursor: not-allowed;
  394. }
  395. .active {
  396. background-color: rgba(5, 187, 76, 0.9);
  397. color: #fff;
  398. }
  399. }
  400. .search-input {
  401. margin-left: 10px;
  402. .el-input__inner {
  403. width: 175px;
  404. }
  405. .el-input__suffix {
  406. right: -50px;
  407. }
  408. }
  409. .but {
  410. display: flex;
  411. flex-direction: row;
  412. align-content: center;
  413. margin-left: 20px;
  414. .buttons {
  415. background-color: rgba(5, 187, 76, 0.2);
  416. border: 1px solid #3b6c53;
  417. color: #b3b3b3;
  418. font-size: 14px;
  419. &:hover,
  420. &.active {
  421. background-color: rgba(5, 187, 76, 0.5);
  422. color: #ffffff;
  423. }
  424. }
  425. }
  426. }
  427. .economicTable1 {
  428. height: calc(100% - 42px);
  429. .el-table ::v-deep {
  430. .el-table__header {
  431. border-collapse: collapse;
  432. }
  433. .el-table__body-wrapper {
  434. .el-table__body {
  435. font-size: 13px;
  436. // border: 1px solid #eceef5;
  437. // border-collapse: collapse;
  438. }
  439. }
  440. th {
  441. height: 20px;
  442. line-height: 20px;
  443. font-size: 14px;
  444. &.el-table__cell {
  445. border: 1px solid rgba(255, 255, 255, 0.8) !important;
  446. &:nth-child(1) {
  447. border-left-width: 0 !important;
  448. // border-left-width: 0 !important;
  449. }
  450. &.is-leaf {
  451. // border-bottom-width: 1px !important;
  452. }
  453. }
  454. }
  455. td {
  456. height: 25px;
  457. line-height: 25px;
  458. font-size: 14px;
  459. &.el-table__cell {
  460. border-bottom: 1px solid #434141 !important;
  461. &:nth-child(1) {
  462. border-left-width: 0 !important;
  463. // border-left-width: 0 !important;
  464. }
  465. &.is-leaf {
  466. // border-bottom-width: 1px !important;
  467. }
  468. }
  469. }
  470. }
  471. .el-pagination {
  472. display: flex;
  473. justify-content: flex-end;
  474. padding-right: 40px;
  475. padding-top: 20px;
  476. .el-pagination__total,
  477. .el-pagination__jump {
  478. color: #fff;
  479. }
  480. }
  481. .el-table__fixed,
  482. .el-table__fixed-right {
  483. background: rgba(0, 0, 0, 1);
  484. border-left: 2px solid #000;
  485. height: calc(100% - 15px) !important;
  486. }
  487. .el-table__fixed::before {
  488. background-color: #2a2a2a;
  489. }
  490. .el-table__fixed-right::before {
  491. background-color: #2a2a2a;
  492. }
  493. }
  494. .el-overlay {
  495. .el-overlay-dialog {
  496. overflow-y: hidden !important;
  497. .el-dialog {
  498. margin-top: 0 !important;
  499. .el-dialog__body {
  500. height: calc(100% - 51px - 32px);
  501. }
  502. }
  503. }
  504. }
  505. .el-picker__popper .el-date-range-picker__header .el-picker-panel__icon-btn {
  506. color: #fff;
  507. }
  508. .el-picker__popper .el-date-table .in-range div {
  509. background: #43516b;
  510. }
  511. }
  512. .historyBtn1 {
  513. cursor: pointer;
  514. color: #05bb4c;
  515. }
  516. </style>