1
0

index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539
  1. <template>
  2. <div class="maintenance">
  3. <div class="maintenance_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
  35. round
  36. size="mini"
  37. class="buttons sousuo"
  38. @click="getTableData"
  39. >搜索</el-button
  40. >
  41. <el-button round size="mini" class="buttons" @click="downXlsxFn"
  42. >导出</el-button
  43. >
  44. </div>
  45. </div>
  46. <div
  47. style="
  48. background: rgba(0, 0, 0, 0.4);
  49. height: calc(100% - 43px);
  50. padding-bottom: 15px;
  51. "
  52. >
  53. <div class="maintenance_title clearfix">
  54. <div class="leftContent floatLeft"><span>检修KPI</span></div>
  55. </div>
  56. <div class="economicTable1">
  57. <el-table
  58. :data="maintenanceData"
  59. stripe
  60. size="mini"
  61. height="calc(100% - 40px - 20px)"
  62. ref="maintenance_table"
  63. style="width: 100%"
  64. border
  65. >
  66. <el-table-column
  67. prop="stationName"
  68. label="场站"
  69. align="center"
  70. show-overflow-tooltip
  71. />
  72. <el-table-column
  73. prop="overhaulTeam"
  74. label="检修班组"
  75. align="center"
  76. width="60px"
  77. show-overflow-tooltip
  78. />
  79. <el-table-column
  80. prop="years"
  81. label="年份"
  82. align="center"
  83. width="60px"
  84. show-overflow-tooltip
  85. />
  86. <el-table-column
  87. prop="month"
  88. label="月份"
  89. align="center"
  90. width="60px"
  91. show-overflow-tooltip
  92. />
  93. <el-table-column
  94. v-for="(item, index) in tableHeader"
  95. :key="index"
  96. :label="item.title"
  97. align="center"
  98. >
  99. <el-table-column
  100. v-for="(subItem, subIndex) in item.children"
  101. :key="subIndex"
  102. :prop="subItem.code"
  103. :label="subItem.title"
  104. align="center"
  105. show-overflow-tooltip
  106. >
  107. <el-table-column
  108. v-for="(thiItem, thiIndex) in subItem.children"
  109. :key="thiIndex"
  110. sortable
  111. width="63"
  112. :prop="thiItem.code"
  113. :label="thiItem.title"
  114. align="center"
  115. show-overflow-tooltip
  116. >
  117. </el-table-column>
  118. </el-table-column>
  119. </el-table-column>
  120. <el-table-column
  121. prop="remark"
  122. label="总评分"
  123. align="center"
  124. width="100"
  125. show-overflow-tooltip
  126. />
  127. </el-table>
  128. <el-pagination
  129. @size-change="handleSizeChange"
  130. @current-change="handleCurrentChange"
  131. :current-page="page.currentPage"
  132. :page-size="page.pagesize"
  133. layout="total, 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 { maintenanceKPI } from "@/api/kpiApi/index.js";
  145. export default {
  146. name: "maintenance", //检修KPI
  147. components: {},
  148. data() {
  149. return {
  150. stationVal: "",
  151. stationOptions: [],
  152. pickerTime: "",
  153. maintenanceData: [],
  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: "jhjxssl_value" },
  174. { title: "评分", code: "jhjxssl_mark" },
  175. ],
  176. },
  177. {
  178. title: "非计划检修损失率",
  179. children: [
  180. { title: "值(%)", code: "fjhjxssl_value" },
  181. { title: "评分", code: "fjhjxssl_mark" },
  182. ],
  183. },
  184. {
  185. title: "缺陷单接单及时率",
  186. children: [
  187. { title: "值(%)", code: "qxdjdjsl_value" },
  188. { title: "评分", code: "qxdjdjsl_mark" },
  189. ],
  190. },
  191. {
  192. title: "到达消缺地点及时率",
  193. children: [
  194. { title: "值(%)", code: "ddxqddjsl_value" },
  195. { title: "评分", code: "ddxqddjsl_mark" },
  196. ],
  197. },
  198. {
  199. title: "真实消缺及时率",
  200. children: [
  201. { title: "值(%)", code: "zsxqjsl_value" },
  202. { title: "评分", code: "zsxqjsl_mark" },
  203. ],
  204. },
  205. {
  206. title: "MTBF",
  207. children: [
  208. { title: "值(小时)", code: "mtbf_value" },
  209. { title: "评分", code: "mtbf_mark" },
  210. ],
  211. },
  212. {
  213. title: "MTTR",
  214. children: [
  215. { title: "值(小时)", code: "mttr_value" },
  216. { title: "评分", code: "mttr_mark" },
  217. ],
  218. },
  219. ],
  220. },
  221. {
  222. title: "综合分析指标",
  223. children: [
  224. {
  225. title: "设备利用小时",
  226. children: [
  227. { title: "值(小时)", code: "sblyxs_value" },
  228. { title: "评分", code: "sblyxs_mark" },
  229. ],
  230. },
  231. {
  232. title: "设备可利用率",
  233. children: [
  234. { title: "值(%)", code: "sbklyl_value" },
  235. { title: "评分", code: "sbklyl_mark" },
  236. ],
  237. },
  238. {
  239. title: "等效可用系数",
  240. children: [
  241. { title: "值(%)", code: "dxkyxs_value" },
  242. { title: "评分", code: "dxkyxs_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.pagesize = val;
  272. this.getTableData();
  273. },
  274. handleCurrentChange(val) {
  275. this.page.currentPage = val;
  276. this.getTableData();
  277. },
  278. getTableData() {
  279. let that = this
  280. let params = {
  281. pageNum: that.page.currentPage,
  282. pageSize: that.page.pagesize,
  283. years: that.pickerTime ? this.pickerTime.substring(0, this.pickerTime.indexOf('-'))*1 : null,
  284. month: that.pickerTime ? this.pickerTime.substring(this.pickerTime.indexOf('-')+1, this.pickerTime.length)*1 : null
  285. }
  286. maintenanceKPI(params).then(res =>{
  287. if (res) {
  288. that.maintenanceData = res.data.records
  289. that.page.total = res.data.total
  290. }
  291. })
  292. },
  293. downXlsxFn() {
  294. let header = [];
  295. this.tableHeader.forEach((it) => {
  296. if (it.title !== "操作") {
  297. header.push(it.title);
  298. }
  299. });
  300. if (this.maintenanceData.length > 0) {
  301. utils.exportExcel(
  302. this.$refs["maintenance_table"].$el,
  303. header,
  304. `${this.pickerTime}检修评价KPI`
  305. );
  306. }
  307. },
  308. },
  309. };
  310. </script>
  311. <style lang="less" scoped>
  312. .maintenance {
  313. padding: 0 20px;
  314. height: 100%;
  315. .maintenance_title {
  316. .leftContent {
  317. width: 242px;
  318. height: 41px;
  319. line-height: 41px;
  320. background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
  321. span {
  322. font-size: 16px;
  323. font-family: Microsoft YaHei;
  324. font-weight: 400;
  325. color: #05bb4c;
  326. margin-left: 25px;
  327. }
  328. }
  329. }
  330. .clearfix::after {
  331. content: "";
  332. clear: both;
  333. height: 0;
  334. line-height: 0;
  335. visibility: hidden;
  336. display: block;
  337. }
  338. .clearfix {
  339. zoom: 1;
  340. }
  341. .maintenance_top {
  342. display: flex;
  343. flex-direction: row;
  344. align-items: center;
  345. margin-top: 10px;
  346. margin-bottom: 10px;
  347. .station {
  348. display: flex;
  349. flex-direction: row;
  350. align-items: center;
  351. font-size: 14px;
  352. font-family: Microsoft YaHei;
  353. font-weight: 400;
  354. color: #b3b3b3;
  355. margin-right: 10px;
  356. margin-left: 10px;
  357. }
  358. .tabCut {
  359. display: inline-block;
  360. margin: 0 10px;
  361. div {
  362. display: inline-block;
  363. width: 60px;
  364. height: 27px;
  365. border: 1px solid #274934;
  366. text-align: center;
  367. line-height: 25px;
  368. cursor: pointer;
  369. }
  370. div:nth-child(1) {
  371. border-radius: 13px 0px 0px 13px;
  372. }
  373. div:nth-child(2) {
  374. border-radius: 0px 13px 13px 0px;
  375. cursor: not-allowed;
  376. }
  377. .active {
  378. background-color: rgba(5, 187, 76, 0.9);
  379. color: #fff;
  380. }
  381. }
  382. .search-input {
  383. margin-left: 10px;
  384. .el-input__inner {
  385. width: 175px;
  386. }
  387. .el-input__suffix {
  388. right: -50px;
  389. }
  390. }
  391. .but {
  392. display: flex;
  393. flex-direction: row;
  394. align-content: center;
  395. margin-left: 20px;
  396. .buttons:nth-child(1) {
  397. background: rgba(5, 187, 76, 0.6);
  398. border: 1px solid #3b6c53;
  399. border-radius: 13px;
  400. color: #fff;
  401. &:hover {
  402. background: rgba(5, 187, 76, 0.9);
  403. border-radius: 13px;
  404. color: #fff;
  405. }
  406. }
  407. .buttons:nth-child(2) {
  408. background: rgba(67, 81, 107, 0.3);
  409. border: 1px solid #3b6c53;
  410. border-radius: 13px;
  411. font-size: 14px;
  412. color: #b3b3b3;
  413. }
  414. }
  415. }
  416. .economicTable1 {
  417. height: calc(100% - 42px);
  418. .el-table ::v-deep {
  419. .el-table__header {
  420. border-collapse: collapse;
  421. }
  422. .el-table__body-wrapper {
  423. .el-table__body {
  424. font-size: 13px;
  425. // border: 1px solid #eceef5;
  426. // border-collapse: collapse;
  427. }
  428. }
  429. th {
  430. height: 20px;
  431. line-height: 20px;
  432. font-size: 14px;
  433. &.el-table__cell {
  434. border: 1px solid rgba(255, 255, 255, 0.8) !important;
  435. &:nth-child(1) {
  436. border-left-width: 0 !important;
  437. // border-left-width: 0 !important;
  438. }
  439. &.is-leaf {
  440. // border-bottom-width: 1px !important;
  441. }
  442. }
  443. }
  444. td {
  445. height: 25px;
  446. line-height: 25px;
  447. font-size: 14px;
  448. &.el-table__cell {
  449. border-bottom: 1px solid #434141 !important;
  450. &:nth-child(1) {
  451. border-left-width: 0 !important;
  452. // border-left-width: 0 !important;
  453. }
  454. &.is-leaf {
  455. // border-bottom-width: 1px !important;
  456. }
  457. }
  458. }
  459. }
  460. .el-pagination {
  461. display: flex;
  462. justify-content: flex-end;
  463. padding-right: 40px;
  464. padding-top: 20px;
  465. .el-pagination__total,
  466. .el-pagination__jump {
  467. color: #fff;
  468. }
  469. }
  470. .el-table__fixed,
  471. .el-table__fixed-right {
  472. background: rgba(0, 0, 0, 1);
  473. border-left: 2px solid #000;
  474. height: calc(100% - 15px) !important;
  475. }
  476. .el-table__fixed::before {
  477. background-color: #2a2a2a;
  478. }
  479. .el-table__fixed-right::before {
  480. background-color: #2a2a2a;
  481. }
  482. }
  483. .el-overlay {
  484. .el-overlay-dialog {
  485. overflow-y: hidden !important;
  486. .el-dialog {
  487. margin-top: 0 !important;
  488. .el-dialog__body {
  489. height: calc(100% - 51px - 32px);
  490. }
  491. }
  492. }
  493. }
  494. .el-picker__popper .el-date-range-picker__header .el-picker-panel__icon-btn {
  495. color: #fff;
  496. }
  497. .el-picker__popper .el-date-table .in-range div {
  498. background: #43516b;
  499. }
  500. }
  501. .historyBtn1 {
  502. cursor: pointer;
  503. color: #05bb4c;
  504. }
  505. </style>