evaluationBenchmarkingIndicPage.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. <template>
  2. <div class="benchmarkingIndicator">
  3. <div class="benchmarkingIndicatorBtn">
  4. <div class="collectSeach" :style="$utils.collectSeachSty()">
  5. <div style="display: flex;width:65%">
  6. <div class="exceed">
  7. <span class="exceedSpan" style="margin-left: 10px;width: 50px">阶段:</span>
  8. <el-select v-model="stageIds" placeholder="请选择业务阶段">
  9. <el-option v-for="item in stageData" :key="item.id" :label="item.stageName"
  10. :value="item.id">
  11. </el-option>
  12. </el-select>
  13. </div>
  14. <div class="exceed">
  15. <span class="exceedSpan" style="margin-left: 10px;width: 50px">指标:</span>
  16. <el-select v-model="indicatorIds" placeholder="请选择指标类型">
  17. <el-option v-for="item in indicatorTypeData" :key="item.id" :label="item.typeName"
  18. :value="item.id">
  19. </el-option>
  20. </el-select>
  21. </div>
  22. <div class="exceed">
  23. <span class="exceedSpan" style="margin-left: 10px;width: 50px">类型:</span>
  24. <el-select v-model="timeStr" placeholder="请选择时间类型">
  25. <el-option v-for="item in timerData" :key="item.value" :label="item.label"
  26. :value="item.value">
  27. </el-option>
  28. </el-select>
  29. </div>
  30. <div class="exceed">
  31. <span class="exceedSpan" style="margin-left: 10px;width: 50px">时间:</span>
  32. <el-date-picker v-model="timeIds" type="month" value-format="YYYY-MM" placeholder="选择时间" />
  33. </div>
  34. </div>
  35. <seachs @handleSeach="getSeachData" @handleRest="resetSeach"></seachs>
  36. <el-button type="info" icon="Download" size="mini" @click="handleExport" style="margin-left:30px">导出
  37. </el-button>
  38. </div>
  39. <!-- <div class="PeriodBtn">
  40. <btns
  41. :showImport="false" :showExport="true"
  42. :showAdd="false"
  43. :showSave="false"
  44. :showDelete="false"
  45. :disSave="true"
  46. :disDelete="true" :disImport="true" :disExport="true"
  47. @handleAdd="handleAdd" @handleEdit="handleEdit" @handleDelete="handleDelete"
  48. @handleImport="handleImport" @handleExport="handleExport"></btns>
  49. </div> -->
  50. <div class="benchmarkingIndicatorTableData">
  51. <div class="tableMain">
  52. <el-table :data="benchmarkingIndicatorData" style="width: 100%" ref="benchmark" :border="true">
  53. <el-table-column type="index" label="排名" align="center"></el-table-column>
  54. <el-table-column label="考评单位" prop="organization_name" width="200" sortable>
  55. <template #default="scope">
  56. <el-tooltip class="box-item" effect="customized" :content="scope.row.organization_name"
  57. placement="right">
  58. <span class="tooltipCC">{{scope.row.organization_name}}</span>
  59. </el-tooltip>
  60. </template>
  61. </el-table-column>
  62. <el-table-column label="综合得分" prop="score_total" sortable />
  63. <el-table-column v-for="(it, index) in benchmarkingIndicatorHeader" :key="index"
  64. :label="it.name" align="center">
  65. <el-table-column sortable :sort-method="(a,b)=>sortMethods(a,b,iv.code)"
  66. v-for="(iv, index) in it.children" :key="index" :label="iv.key" align="center">
  67. <template #default="scope">
  68. <span style="font-weight: bold"
  69. :style="scope.row[iv.code+'_flag'] === '1'?'color:#3B7AD1': scope.row[iv.code+'_flag'] === '-1'?'color:#F65177':'color:#666666'">{{scope.row[iv.code]}}</span>
  70. </template>
  71. </el-table-column>
  72. </el-table-column>
  73. </el-table>
  74. </div>
  75. <div class="tableSeach">
  76. <div class="seachType" v-for="item in titleMsgArr" :key="item.isName"
  77. :class="item.showClick? 'seachTypeCha':''" @click="changType(item)">
  78. <img :src="item.img" alt="" v-if="!item.showClick">
  79. <img :src="item.clickImg" alt="" v-else>
  80. <p :style="item.showClick? 'color: #3B7AD1' : ''">{{item.isName}}</p>
  81. </div>
  82. </div>
  83. </div>
  84. </div>
  85. </div>
  86. </template>
  87. <script>
  88. import btns from '../elbuttonS.vue'
  89. import seachs from '../seachGroup.vue'
  90. import * as XLSX from 'xlsx'
  91. import {
  92. saveAs
  93. } from 'file-saver'
  94. import * as XLSXD from 'xlsx-js-style'
  95. import huoDef from '../../assets/benchmarkImg/huoDef.png'
  96. import shuiDef from '../../assets/benchmarkImg/shuiDef.png'
  97. import xinDef from '../../assets/benchmarkImg/xinDef.png'
  98. import meiDef from '../../assets/benchmarkImg/meiDef.png'
  99. import guoDef from '../../assets/benchmarkImg/guoDef.png'
  100. import zongDef from '../../assets/benchmarkImg/zongDef.png'
  101. import huoCha from '../../assets/benchmarkImg/huoCha.png'
  102. import shuiCha from '../../assets/benchmarkImg/shuiCha.png'
  103. import xinCha from '../../assets/benchmarkImg/xinCha.png'
  104. import meiCha from '../../assets/benchmarkImg/meiCha.png'
  105. import guoCha from '../../assets/benchmarkImg/guoCha.png'
  106. import zongCha from '../../assets/benchmarkImg/zongCha.png'
  107. import {
  108. apiGetscoreCountevaluationList,
  109. apiGetbinstageList,
  110. apiGetIndicatorTypeList
  111. } from '../../api/api'
  112. export default {
  113. components: {
  114. btns,
  115. seachs
  116. },
  117. data() {
  118. return {
  119. benchmarkingIndicatorData: [],
  120. benchmarkingIndicatorHeader: [],
  121. indicatorTypeData: [],
  122. stageData: [],
  123. companyDatas: [],
  124. periodId: '',
  125. stageIds: '',
  126. indicatorIds: '',
  127. timeIds: '',
  128. timeStr: 'JDKP',
  129. binSectionStr: 'HD',
  130. page: {
  131. pagesize: 12,
  132. currentPage: 1,
  133. total: 0
  134. },
  135. titleMsgArr: [],
  136. timerData: [],
  137. }
  138. },
  139. created() {
  140. let year = new Date().getFullYear()
  141. let month = new Date().getMonth() + 1
  142. if (month < 10) {
  143. this.timeIds = (year + '-0' + month).toString()
  144. } else {
  145. this.timeIds = (year + '-' + month).toString()
  146. }
  147. this.timerData = [{
  148. label: '年度',
  149. value: 'NDKP'
  150. },
  151. {
  152. label: '季度',
  153. value: 'JDKP'
  154. },
  155. {
  156. label: '月度',
  157. value: 'YDKP'
  158. }
  159. ]
  160. this.titleMsgArr = [{
  161. isClass: 'huoDef',
  162. isClassC: 'huoCha',
  163. isName: '火电',
  164. isNameEn: 'HD',
  165. img: huoDef,
  166. clickImg: huoCha,
  167. showClick: true
  168. },
  169. {
  170. isClass: 'shuiDef',
  171. isClassC: 'shuiCha',
  172. isName: '水电',
  173. isNameEn: 'SD',
  174. img: shuiDef,
  175. clickImg: shuiCha,
  176. showClick: false
  177. },
  178. {
  179. isClass: 'xinDef',
  180. isClassC: 'xinCha',
  181. isName: '新能源',
  182. isNameEn: 'XNYFG',
  183. img: xinDef,
  184. clickImg: xinCha,
  185. showClick: false
  186. },
  187. {
  188. isClass: 'meiDef',
  189. isClassC: 'meiCha',
  190. isName: '煤电一体化',
  191. isNameEn: 'MDYTH',
  192. img: meiDef,
  193. clickImg: meiCha,
  194. showClick: false
  195. },
  196. {
  197. isClass: 'guoDef',
  198. isClassC: 'guoCha',
  199. isName: '国际业务',
  200. isNameEn: 'GJYW',
  201. img: guoDef,
  202. clickImg: guoCha,
  203. showClick: false
  204. },
  205. {
  206. isClass: 'zongDef',
  207. isClassC: 'zongCha',
  208. isName: '综合支持',
  209. isNameEn: 'ZHZC',
  210. img: zongDef,
  211. clickImg: zongCha,
  212. showClick: false
  213. }
  214. ]
  215. this.getBinstageAndType()
  216. },
  217. methods: {
  218. // 查询考评对标分析数据
  219. getEvalBenchmarkingIndicData() {
  220. let that = this
  221. let binSectionFin = ''
  222. if (that.binSectionStr === 'XNYFG') {
  223. if (that.timeStr === 'YDKP' || that.timeStr === 'JDKP') {
  224. binSectionFin = 'FD'
  225. } else {
  226. binSectionFin = 'XNYFG'
  227. }
  228. } else {
  229. binSectionFin = that.binSectionStr
  230. }
  231. let params = {
  232. condition: that.timeStr,
  233. date: that.timeIds,
  234. type: that.indicatorIds,
  235. binSection: binSectionFin,
  236. binStage: that.stageIds
  237. }
  238. apiGetscoreCountevaluationList(params).then(datas => {
  239. if (datas && datas.data) {
  240. that.benchmarkingIndicatorData = []
  241. if (datas.data.title) {
  242. let header = []
  243. for (let i in datas.data.title) {
  244. let obj = {
  245. name: i,
  246. children: datas.data.title[i]
  247. }
  248. header.push(obj)
  249. }
  250. that.benchmarkingIndicatorHeader = header
  251. }
  252. if (datas.data.value.length > 0) {
  253. let arr = datas.data.value
  254. for (let i = 0; i < arr.length - 1; i++) {
  255. for (let j = 0; j < arr.length - 1 - i; j++) {
  256. if (arr[j] > arr[j + 1]) {
  257. const temp = arr[j]
  258. arr[j] = arr[j + 1]
  259. arr[j + 1] = temp
  260. }
  261. }
  262. }
  263. that.benchmarkingIndicatorData = arr
  264. console.log('arr', arr)
  265. }
  266. }
  267. })
  268. },
  269. sortMethods(a, b, it) {
  270. if (a[it] < b[it]) {
  271. return -1
  272. }
  273. },
  274. // 获取阶段数据及指标类型数据
  275. getBinstageAndType() {
  276. let that = this
  277. apiGetbinstageList().then(datas => {
  278. if (datas && datas.data) {
  279. that.stageData = datas.data
  280. datas.data.forEach(it => {
  281. if (it.stageName === '生产经营') {
  282. that.stageIds = it.id
  283. }
  284. })
  285. }
  286. })
  287. apiGetIndicatorTypeList({
  288. type: 2
  289. }).then(datas => {
  290. if (datas && datas.data) {
  291. that.indicatorTypeData = datas.data
  292. }
  293. })
  294. that.getEvalBenchmarkingIndicData()
  295. },
  296. changType(data) {
  297. this.titleMsgArr.forEach(it => {
  298. it.showClick = false
  299. if (it.isName === data.isName) {
  300. it.showClick = true
  301. this.binSectionStr = it.isNameEn
  302. }
  303. })
  304. this.getEvalBenchmarkingIndicData()
  305. },
  306. getSeachData() {
  307. this.page.currentPage = 1
  308. this.getEvalBenchmarkingIndicData()
  309. },
  310. resetSeach() {
  311. this.page.currentPage = 1
  312. this.indicatorIds = ''
  313. this.stageIds = ''
  314. this.getEvalBenchmarkingIndicData()
  315. },
  316. handleExport() {
  317. let $e = this.$refs.benchmark.$el
  318. try {
  319. let $table = $e.querySelector('.el-table__fixed')
  320. if (!$table) {
  321. $table = $e
  322. }
  323. const wb = XLSX.utils.table_to_book($table, {
  324. raw: true
  325. })
  326. const wbout = XLSXD.write(wb, {
  327. bookType: 'xlsx',
  328. bookSST: true,
  329. type: 'array'
  330. })
  331. saveAs(
  332. new Blob([wbout], {
  333. type: 'application/octet-stream'
  334. }),
  335. `考评对标分析数据导出.xlsx`,
  336. )
  337. } catch (e) {
  338. if (typeof console !== 'undefined') console.error(e)
  339. }
  340. },
  341. }
  342. }
  343. </script>
  344. <style lang="less">
  345. .benchmarkingIndicator {
  346. .benchmarkingIndicatorBtn {
  347. .collectSeach {
  348. display: flex;
  349. padding: 24px 20px;
  350. border-bottom: 1px solid#D6DBEA;
  351. .exceed {
  352. display: flex;
  353. .exceedSpan {
  354. width: 100px;
  355. height: 12px;
  356. font-size: 14px;
  357. font-family: Microsoft YaHei;
  358. font-weight: 400;
  359. color: #8991B0;
  360. line-height: 12px;
  361. margin-top: 14px;
  362. }
  363. .el-date-editor {
  364. width: 68%;
  365. }
  366. .el-select {
  367. width: 70%;
  368. }
  369. .el-input {
  370. margin-right: 10px;
  371. .el-input__inner {
  372. height: 30px;
  373. }
  374. .el-input__suffix {
  375. .el-select__caret {
  376. line-height: 30px;
  377. }
  378. }
  379. }
  380. .el-select {
  381. line-height: 40px !important;
  382. .el-input__inner,
  383. .is-disabled {
  384. height: 40px !important;
  385. }
  386. .el-input__suffix {
  387. .el-select__caret {
  388. line-height: 40px;
  389. }
  390. }
  391. }
  392. .el-date-editor--month {
  393. height: 40px;
  394. }
  395. }
  396. }
  397. span {
  398. font-size: 14px;
  399. }
  400. .PeriodBtn {
  401. display: flex;
  402. justify-content: flex-end;
  403. padding: 20px 0;
  404. }
  405. .el-button {
  406. height: 30px;
  407. // width:100px;
  408. padding: 0 30px;
  409. // padding-top: 8px;
  410. span {
  411. margin: 0;
  412. }
  413. }
  414. .indexdialog {
  415. .el-overlay {
  416. .el-dialog {
  417. .el-dialog__body {
  418. padding: 30px 60px 30px 20px !important;
  419. .periodFrom {
  420. .el-select,
  421. .el-input {
  422. width: 100%;
  423. }
  424. .el-input {
  425. height: 30px;
  426. }
  427. }
  428. }
  429. }
  430. }
  431. }
  432. }
  433. .benchmarkingIndicatorTableData {
  434. display: flex;
  435. width: 100%;
  436. margin-top: 20px;
  437. .tableMain {
  438. width: calc(100% - 100px);
  439. .el-table {
  440. .el-table__header-wrapper {
  441. .el-table__header {
  442. .el-table__cell {
  443. border-bottom: none !important;
  444. }
  445. thead {
  446. tr {
  447. th {
  448. .cell {
  449. line-height: 16px;
  450. }
  451. }
  452. }
  453. }
  454. }
  455. }
  456. .el-table__body-wrapper {
  457. height: 68vh !important;
  458. .el-scrollbar {
  459. .is-horizontal {
  460. .el-scrollbar__thumb {
  461. width: 100% !important;
  462. }
  463. }
  464. .el-table__body {
  465. tr {
  466. td {
  467. padding: 0;
  468. .cell {
  469. background: #F6F7FA;
  470. line-height: 47px;
  471. height: 47px;
  472. }
  473. }
  474. td:hover {
  475. line-height: 45px;
  476. height: 45px;
  477. }
  478. }
  479. }
  480. }
  481. }
  482. .el-table--border .el-table__cell {
  483. border: none;
  484. }
  485. .el-table thead.is-group th.el-table__cell {
  486. background: transparent;
  487. }
  488. .tooltipCC {
  489. width: 180px;
  490. display: inline-block;
  491. overflow: hidden;
  492. text-overflow: ellipsis;
  493. white-space: nowrap;
  494. }
  495. }
  496. .el-pagination {
  497. margin-top: 20px;
  498. text-align: end;
  499. position: relative;
  500. }
  501. }
  502. .tableSeach {
  503. width: 81px;
  504. height: 100%;
  505. margin-left: 10px;
  506. border: 1px solid #D6DBEA;
  507. padding: 5px 0;
  508. border-radius: 5px;
  509. .seachType {
  510. width: 78px;
  511. height: 78px;
  512. cursor: pointer;
  513. border-left: 3px solid transparent;
  514. img {
  515. margin-top: 17px;
  516. margin-left: 27px;
  517. }
  518. p {
  519. text-align: center;
  520. font-size: 14px;
  521. }
  522. }
  523. .seachTypeCha {
  524. background: #E6EBF5;
  525. cursor: pointer;
  526. border-left: 3px solid #3B7AD1;
  527. }
  528. }
  529. }
  530. }
  531. </style>