index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  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="center"
  102. show-overflow-tooltip
  103. >
  104. <el-table-column
  105. v-for="(thiItem, thiIndex) in subItem.children"
  106. :key="thiIndex"
  107. sortable
  108. width="63"
  109. :prop="thiItem.code"
  110. :label="thiItem.title"
  111. 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 { runningKPI } from "@/api/kpiApi/index.js";
  143. export default {
  144. name: "running", //运行KPI
  145. components: {},
  146. data() {
  147. return {
  148. stationVal: "",
  149. stationOptions: [],
  150. pickerTime: "",
  151. runningData: [],
  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: "fnlyl_value" },
  165. { title: "评分", code: "fnlyl_mark" },
  166. ],
  167. },
  168. {
  169. title: "限电损失率",
  170. children: [
  171. { title: "值(%)", code: "xdssl_value" },
  172. { title: "评分", code: "xdssl_mark" },
  173. ],
  174. },
  175. {
  176. title: "性能损失率",
  177. children: [
  178. { title: "值(%)", code: "xnssl_value" },
  179. { title: "评分", code: "xnssl_mark" },
  180. ],
  181. },
  182. {
  183. title: "复位及时率",
  184. children: [
  185. { title: "值(%)", code: "fwjsl_value" },
  186. { title: "评分", code: "fwjsl_mark" },
  187. ],
  188. },
  189. {
  190. title: "状态转换及时率",
  191. children: [
  192. { title: "值(%)", code: "ztzhjsl_value" },
  193. { title: "评分", code: "ztzhjsl_mark" },
  194. ],
  195. },
  196. {
  197. title: "缺陷下单及时率",
  198. children: [
  199. { title: "值(%)", code: "qxxdjsl_value" },
  200. { title: "评分", code: "qxxdjsl_mark" },
  201. ],
  202. },
  203. {
  204. title: "缺陷验收及时率",
  205. children: [
  206. { title: "值(%)", code: "qxysjsl_value" },
  207. { title: "评分", code: "qxysjsl_mark" },
  208. ],
  209. },
  210. {
  211. title: "平均小风切入风速",
  212. children: [
  213. { title: "值(m/s)", code: "pjxfqrfs_value" },
  214. { title: "评分", code: "pjxfqrfs_mark" },
  215. ],
  216. },
  217. {
  218. title: "MTTF",
  219. children: [
  220. { title: "值(小时)", code: "mttf_value" },
  221. { title: "评分", code: "mttf_mark" },
  222. ],
  223. },
  224. ],
  225. },
  226. {
  227. title: "综合分析指标",
  228. children: [
  229. {
  230. title: "设备利用小时",
  231. children: [
  232. { title: "值(小时)", code: "sblyxs_value" },
  233. { title: "评分", code: "sblyxs_mark" },
  234. ],
  235. },
  236. {
  237. title: "综合厂用电率",
  238. children: [
  239. { title: "值(%)", code: "zhcydl_value" },
  240. { title: "评分", code: "zhcydl_mark" },
  241. ],
  242. },
  243. {
  244. title: "隐患发现准确率",
  245. children: [
  246. { title: "值(%)", code: "yhfxzql_value" },
  247. { title: "评分", code: "yhfxzql_mark" },
  248. ],
  249. },
  250. ],
  251. },
  252. ],
  253. page: {
  254. pagesize: 21,
  255. currentPage: 1,
  256. total: 0,
  257. },
  258. };
  259. },
  260. created() {
  261. this.pickerTime = dayjs().format("YYYY-MM");
  262. },
  263. mounted() {
  264. this.getTableData();
  265. },
  266. computed: {},
  267. methods: {
  268. handleSizeChange(val) {
  269. this.page.currentPage = 1;
  270. this.page.pagesize = val;
  271. this.getTableData();
  272. },
  273. handleCurrentChange(val) {
  274. this.page.currentPage = val;
  275. this.getTableData();
  276. },
  277. getTableData() {
  278. let that = this;
  279. let params = {
  280. pageNum: that.page.currentPage,
  281. pageSize: that.page.pagesize,
  282. years: that.pickerTime
  283. ? this.pickerTime.substring(0, this.pickerTime.indexOf("-")) * 1
  284. : null,
  285. month: that.pickerTime
  286. ? this.pickerTime.substring(
  287. this.pickerTime.indexOf("-") + 1,
  288. this.pickerTime.length
  289. ) * 1
  290. : null,
  291. };
  292. runningKPI(params).then((res) => {
  293. if (res) {
  294. that.runningData = res.data.records;
  295. that.page.total = res.data.total;
  296. }
  297. });
  298. },
  299. downXlsxFn() {
  300. let header = [];
  301. this.tableHeader.forEach((it) => {
  302. header.push(it.title);
  303. });
  304. if (this.runningData.length > 0) {
  305. utils.exportExcel(
  306. this.$refs["running_table"].$el,
  307. header,
  308. `${this.pickerTime}运行评价KPI`
  309. );
  310. }
  311. },
  312. },
  313. };
  314. </script>
  315. <style lang="less" scoped>
  316. .running {
  317. padding: 0 20px;
  318. height: 100%;
  319. .running_title {
  320. .leftContent {
  321. width: 242px;
  322. height: 41px;
  323. line-height: 41px;
  324. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  325. span {
  326. font-size: 16px;
  327. font-family: Microsoft YaHei;
  328. font-weight: 400;
  329. color: #05bb4c;
  330. margin-left: 25px;
  331. }
  332. }
  333. .floatLeft {
  334. float: left;
  335. }
  336. .floatRight {
  337. float: right;
  338. }
  339. .rightContent {
  340. width: 212px;
  341. height: 28px;
  342. margin-top: 13px;
  343. background: url("../../../../assets/imgs/title_right_bg.png");
  344. }
  345. }
  346. .clearfix::after {
  347. content: "";
  348. clear: both;
  349. height: 0;
  350. line-height: 0;
  351. visibility: hidden;
  352. display: block;
  353. }
  354. .clearfix {
  355. zoom: 1;
  356. }
  357. .running_top {
  358. display: flex;
  359. flex-direction: row;
  360. align-items: center;
  361. margin-top: 10px;
  362. margin-bottom: 10px;
  363. .station {
  364. display: flex;
  365. flex-direction: row;
  366. align-items: center;
  367. font-size: 14px;
  368. font-family: Microsoft YaHei;
  369. font-weight: 400;
  370. color: #b3b3b3;
  371. margin-right: 10px;
  372. margin-left: 10px;
  373. }
  374. .tabCut {
  375. display: inline-block;
  376. margin: 0 10px;
  377. div {
  378. display: inline-block;
  379. width: 60px;
  380. height: 27px;
  381. border: 1px solid #274934;
  382. text-align: center;
  383. line-height: 25px;
  384. cursor: pointer;
  385. }
  386. div:nth-child(1) {
  387. border-radius: 13px 0px 0px 13px;
  388. }
  389. div:nth-child(2) {
  390. border-radius: 0px 13px 13px 0px;
  391. cursor: not-allowed;
  392. }
  393. .active {
  394. background-color: rgba(5, 187, 76, 0.9);
  395. color: #fff;
  396. }
  397. }
  398. .search-input {
  399. margin-left: 10px;
  400. .el-input__inner {
  401. width: 175px;
  402. }
  403. .el-input__suffix {
  404. right: -50px;
  405. }
  406. }
  407. .but {
  408. display: flex;
  409. flex-direction: row;
  410. align-content: center;
  411. margin-left: 20px;
  412. .buttons {
  413. background-color: rgba(5, 187, 76, 0.2);
  414. border: 1px solid #3b6c53;
  415. color: #b3b3b3;
  416. font-size: 14px;
  417. &:hover,
  418. &.active {
  419. background-color: rgba(5, 187, 76, 0.5);
  420. color: #ffffff;
  421. }
  422. }
  423. }
  424. }
  425. .economicTable1 {
  426. height: calc(100% - 42px);
  427. .el-table ::v-deep {
  428. .el-table__header {
  429. border-collapse: collapse;
  430. }
  431. .el-table__body-wrapper {
  432. .el-table__body {
  433. font-size: 13px;
  434. // border: 1px solid #eceef5;
  435. // border-collapse: collapse;
  436. }
  437. }
  438. th {
  439. height: 20px;
  440. line-height: 20px;
  441. font-size: 14px;
  442. &.el-table__cell {
  443. border: 1px solid rgba(255, 255, 255, 0.8) !important;
  444. &:nth-child(1) {
  445. border-left-width: 0 !important;
  446. // border-left-width: 0 !important;
  447. }
  448. &.is-leaf {
  449. // border-bottom-width: 1px !important;
  450. }
  451. }
  452. }
  453. td {
  454. height: 25px;
  455. line-height: 25px;
  456. font-size: 14px;
  457. &.el-table__cell {
  458. border-bottom: 1px solid #434141 !important;
  459. &:nth-child(1) {
  460. border-left-width: 0 !important;
  461. // border-left-width: 0 !important;
  462. }
  463. &.is-leaf {
  464. // border-bottom-width: 1px !important;
  465. }
  466. }
  467. }
  468. }
  469. .el-pagination {
  470. display: flex;
  471. justify-content: flex-end;
  472. padding-right: 40px;
  473. padding-top: 20px;
  474. .el-pagination__total,
  475. .el-pagination__jump {
  476. color: #fff;
  477. }
  478. }
  479. .el-table__fixed,
  480. .el-table__fixed-right {
  481. background: rgba(0, 0, 0, 1);
  482. border-left: 2px solid #000;
  483. height: calc(100% - 15px) !important;
  484. }
  485. .el-table__fixed::before {
  486. background-color: #2a2a2a;
  487. }
  488. .el-table__fixed-right::before {
  489. background-color: #2a2a2a;
  490. }
  491. }
  492. .el-overlay {
  493. .el-overlay-dialog {
  494. overflow-y: hidden !important;
  495. .el-dialog {
  496. margin-top: 0 !important;
  497. .el-dialog__body {
  498. height: calc(100% - 51px - 32px);
  499. }
  500. }
  501. }
  502. }
  503. .el-picker__popper .el-date-range-picker__header .el-picker-panel__icon-btn {
  504. color: #fff;
  505. }
  506. .el-picker__popper .el-date-table .in-range div {
  507. background: #43516b;
  508. }
  509. }
  510. .historyBtn1 {
  511. cursor: pointer;
  512. color: #05bb4c;
  513. }
  514. </style>