index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  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
  36. round
  37. size="mini"
  38. class="buttons sousuo"
  39. @click="getTableData"
  40. >搜索</el-button
  41. >
  42. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  43. >导出</el-button
  44. >
  45. </div>
  46. </div>
  47. <div
  48. style="
  49. background: rgba(0, 0, 0, 0.4);
  50. height: calc(100% - 43px);
  51. padding-bottom: 15px;
  52. "
  53. >
  54. <div class="running_title clearfix">
  55. <div class="leftContent floatLeft"><span>运行KPI</span></div>
  56. </div>
  57. <div class="economicTable1">
  58. <el-table
  59. :data="runningData"
  60. stripe
  61. size="mini"
  62. height="calc(100% - 40px - 20px)"
  63. ref="running_table"
  64. style="width: 100%"
  65. border
  66. >
  67. <el-table-column
  68. prop="stationName"
  69. label="场站"
  70. align="center"
  71. show-overflow-tooltip
  72. />
  73. <el-table-column
  74. prop="runningTeam"
  75. label="运行班组"
  76. align="center"
  77. width="60px"
  78. show-overflow-tooltip
  79. />
  80. <el-table-column
  81. prop="years"
  82. label="年份"
  83. align="center"
  84. width="60px"
  85. show-overflow-tooltip
  86. />
  87. <el-table-column
  88. prop="month"
  89. label="月份"
  90. align="center"
  91. width="60px"
  92. show-overflow-tooltip
  93. />
  94. <el-table-column
  95. v-for="(item, index) in tableHeader"
  96. :key="index"
  97. :label="item.title"
  98. align="center"
  99. >
  100. <el-table-column
  101. v-for="(subItem, subIndex) in item.children"
  102. :key="subIndex"
  103. :prop="subItem.code"
  104. :label="subItem.title"
  105. align="center"
  106. show-overflow-tooltip
  107. >
  108. <el-table-column
  109. v-for="(thiItem, thiIndex) in subItem.children"
  110. :key="thiIndex"
  111. sortable
  112. width="63"
  113. :prop="thiItem.code"
  114. :label="thiItem.title"
  115. align="center"
  116. show-overflow-tooltip
  117. >
  118. </el-table-column>
  119. </el-table-column>
  120. </el-table-column>
  121. <el-table-column
  122. prop="remark"
  123. label="总评分"
  124. align="center"
  125. width="40px"
  126. show-overflow-tooltip
  127. />
  128. </el-table>
  129. <el-pagination
  130. @size-change="handleSizeChange"
  131. @current-change="handleCurrentChange"
  132. :current-page="page.currentPage"
  133. :page-size="page.pagesize"
  134. layout="total, prev, pager, next, jumper"
  135. :total="page.total"
  136. >
  137. </el-pagination>
  138. </div>
  139. </div>
  140. </div>
  141. </template>
  142. <script>
  143. import utils from "@/utills/downXlsx";
  144. import dayjs from "dayjs";
  145. import { runningKPI } from "@/api/kpiApi/index.js";
  146. export default {
  147. name: "running", //运行KPI
  148. components: {},
  149. data() {
  150. return {
  151. stationVal: "",
  152. stationOptions: [],
  153. pickerTime: "",
  154. runningData: [],
  155. tabIndex: -1,
  156. tabOptions: [
  157. { id: -1, name: "风电" },
  158. { id: -2, name: "光伏" },
  159. ],
  160. tableHeader: [
  161. {
  162. title: "生产效率指标",
  163. children: [
  164. {
  165. title: "风能利用率",
  166. children: [
  167. { title: "值(%)", code: "fnlyl_value" },
  168. { title: "评分", code: "fnlyl_mark" },
  169. ],
  170. },
  171. {
  172. title: "限电损失率",
  173. children: [
  174. { title: "值(%)", code: "xdssl_value" },
  175. { title: "评分", code: "xdssl_mark" },
  176. ],
  177. },
  178. {
  179. title: "性能损失率",
  180. children: [
  181. { title: "值(%)", code: "xnssl_value" },
  182. { title: "评分", code: "xnssl_mark" },
  183. ],
  184. },
  185. {
  186. title: "复位及时率",
  187. children: [
  188. { title: "值(%)", code: "fwjsl_value" },
  189. { title: "评分", code: "fwjsl_mark" },
  190. ],
  191. },
  192. {
  193. title: "状态转换及时率",
  194. children: [
  195. { title: "值(%)", code: "ztzhjsl_value" },
  196. { title: "评分", code: "ztzhjsl_mark" },
  197. ],
  198. },
  199. {
  200. title: "缺陷下单及时率",
  201. children: [
  202. { title: "值(%)", code: "qxxdjsl_value" },
  203. { title: "评分", code: "qxxdjsl_mark" },
  204. ],
  205. },
  206. {
  207. title: "缺陷验收及时率",
  208. children: [
  209. { title: "值(%)", code: "qxysjsl_value" },
  210. { title: "评分", code: "qxysjsl_mark" },
  211. ],
  212. },
  213. {
  214. title: "平均小风切入风速",
  215. children: [
  216. { title: "值(m/s)", code: "pjxfqrfs_value" },
  217. { title: "评分", code: "pjxfqrfs_mark" },
  218. ],
  219. },
  220. {
  221. title: "MTTF",
  222. children: [
  223. { title: "值(小时)", code: "mttf_value" },
  224. { title: "评分", code: "mttf_mark" },
  225. ],
  226. },
  227. ],
  228. },
  229. {
  230. title: "综合分析指标",
  231. children: [
  232. {
  233. title: "设备利用小时",
  234. children: [
  235. { title: "值(小时)", code: "sblyxs_value" },
  236. { title: "评分", code: "sblyxs_mark" },
  237. ],
  238. },
  239. {
  240. title: "综合厂用电率",
  241. children: [
  242. { title: "值(%)", code: "zhcydl_value" },
  243. { title: "评分", code: "zhcydl_mark" },
  244. ],
  245. },
  246. {
  247. title: "隐患发现准确率",
  248. children: [
  249. { title: "值(%)", code: "yhfxzql_value" },
  250. { title: "评分", code: "yhfxzql_mark" },
  251. ],
  252. },
  253. ],
  254. },
  255. ],
  256. page: {
  257. pagesize: 21,
  258. currentPage: 1,
  259. total: 0,
  260. },
  261. };
  262. },
  263. created() {
  264. this.pickerTime = dayjs().format("YYYY-MM");
  265. },
  266. mounted() {
  267. this.getTableData()
  268. },
  269. computed: {},
  270. methods: {
  271. handleSizeChange(val) {
  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 ? this.pickerTime.substring(0, this.pickerTime.indexOf('-'))*1 : null,
  285. month: that.pickerTime ? this.pickerTime.substring(this.pickerTime.indexOf('-')+1, this.pickerTime.length)*1 : null
  286. }
  287. runningKPI(params).then(res =>{
  288. if (res) {
  289. that.runningData = res.data.records
  290. that.page.total = res.data.total
  291. }
  292. })
  293. },
  294. downXlsxFn() {
  295. let header = [];
  296. this.tableHeader.forEach((it) => {
  297. header.push(it.title);
  298. });
  299. if (this.runningData.length > 0) {
  300. utils.exportExcel(
  301. this.$refs["running_table"].$el,
  302. header,
  303. `${this.pickerTime}运行评价KPI`
  304. );
  305. }
  306. },
  307. },
  308. };
  309. </script>
  310. <style lang="less" scoped>
  311. .running {
  312. padding: 0 20px;
  313. height: 100%;
  314. .running_title {
  315. .leftContent {
  316. width: 242px;
  317. height: 41px;
  318. line-height: 41px;
  319. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  320. span {
  321. font-size: 16px;
  322. font-family: Microsoft YaHei;
  323. font-weight: 400;
  324. color: #05bb4c;
  325. margin-left: 25px;
  326. }
  327. }
  328. .floatLeft {
  329. float: left;
  330. }
  331. .floatRight {
  332. float: right;
  333. }
  334. .rightContent {
  335. width: 212px;
  336. height: 28px;
  337. margin-top: 13px;
  338. background: url("../../../../assets/imgs/title_right_bg.png");
  339. }
  340. }
  341. .clearfix::after {
  342. content: "";
  343. clear: both;
  344. height: 0;
  345. line-height: 0;
  346. visibility: hidden;
  347. display: block;
  348. }
  349. .clearfix {
  350. zoom: 1;
  351. }
  352. .running_top {
  353. display: flex;
  354. flex-direction: row;
  355. align-items: center;
  356. margin-top: 10px;
  357. margin-bottom: 10px;
  358. .station {
  359. display: flex;
  360. flex-direction: row;
  361. align-items: center;
  362. font-size: 14px;
  363. font-family: Microsoft YaHei;
  364. font-weight: 400;
  365. color: #b3b3b3;
  366. margin-right: 10px;
  367. margin-left: 10px;
  368. }
  369. .tabCut {
  370. display: inline-block;
  371. margin: 0 10px;
  372. div {
  373. display: inline-block;
  374. width: 60px;
  375. height: 27px;
  376. border: 1px solid #274934;
  377. text-align: center;
  378. line-height: 25px;
  379. cursor: pointer;
  380. }
  381. div:nth-child(1) {
  382. border-radius: 13px 0px 0px 13px;
  383. }
  384. div:nth-child(2) {
  385. border-radius: 0px 13px 13px 0px;
  386. cursor: not-allowed;
  387. }
  388. .active {
  389. background-color: rgba(5, 187, 76, 0.9);
  390. color: #fff;
  391. }
  392. }
  393. .search-input {
  394. margin-left: 10px;
  395. .el-input__inner {
  396. width: 175px;
  397. }
  398. .el-input__suffix {
  399. right: -50px;
  400. }
  401. }
  402. .but {
  403. display: flex;
  404. flex-direction: row;
  405. align-content: center;
  406. margin-left: 20px;
  407. .buttons:nth-child(1) {
  408. background: rgba(5, 187, 76, 0.6);
  409. border: 1px solid #3b6c53;
  410. border-radius: 13px;
  411. color: #fff;
  412. &:hover {
  413. background: rgba(5, 187, 76, 0.9);
  414. border-radius: 13px;
  415. color: #fff;
  416. }
  417. }
  418. .buttons:nth-child(2) {
  419. background: rgba(67, 81, 107, 0.3);
  420. border: 1px solid #3b6c53;
  421. border-radius: 13px;
  422. font-size: 14px;
  423. color: #b3b3b3;
  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>