gatewayNewSeasonFrom.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <div class="seasonLeagueTable">
  3. <el-dialog v-model="dialogVisible" :fullscreen="true" :close-on-click-modal="false">
  4. <template #header>
  5. <div class="seasonHeader">
  6. <span style="font-size:14px;color:#fff">考核排行榜</span>
  7. <el-select v-model="optionName" placeholder="请选择板块" @change="changeOption">
  8. <el-option
  9. v-for="item in optionArr"
  10. :key="item.value"
  11. :label="item.label"
  12. :value="item.value">
  13. </el-option>
  14. </el-select>
  15. </div>
  16. </template>
  17. <el-row class="seasonFrom">
  18. <el-col :span="evaluationSeasonDataRight.length>0?12:24" :style="evaluationSeasonDataRight.length>0?'border-right: 1px solid #E1E3EA;':''">
  19. <el-table :data="evaluationSeasonDataLeft" style="width: 100%">
  20. <el-table-column label="排名" prop="rank" width="50" align="center" />
  21. <el-table-column label="单位名称">
  22. <template #default="scope">
  23. <span class="companyStyle">{{scope.row.company}}</span>
  24. </template>
  25. </el-table-column>
  26. <el-table-column label="得分" prop="score" align="center" />
  27. <el-table-column label="加分事项" align="center">
  28. <template #default="scope">
  29. <el-popover
  30. placement="right-start"
  31. :title="scope.row.company +' '+ scope.row.score"
  32. :width="200"
  33. trigger="hover"
  34. :content="scope.row.matter_heigh_note"
  35. >
  36. <template #reference>
  37. <img :src="scope.row.matter_heigh === 0 ? cenImg : scope.row.matter_heigh === 1 ? topImg : botImg" alt="">
  38. </template>
  39. </el-popover>
  40. </template>
  41. </el-table-column>
  42. <el-table-column label="扣分事项" align="center">
  43. <template #default="scope">
  44. <el-popover
  45. placement="right-start"
  46. :title="scope.row.company +' '+ scope.row.score"
  47. :width="200"
  48. trigger="hover"
  49. :content="scope.row.matter_low_note"
  50. >
  51. <template #reference>
  52. <img :src="scope.row.matter_low === 0 ? cenImg : scope.row.matter_low === 1 ? topImg : botImg" alt="">
  53. </template>
  54. </el-popover>
  55. </template>
  56. </el-table-column>
  57. <el-table-column label="管理加分" align="center">
  58. <template #default="scope">
  59. <el-popover
  60. placement="right-start"
  61. :title="scope.row.company +' '+ scope.row.score"
  62. :width="200"
  63. trigger="hover"
  64. :content="scope.row.manage_heigh_note"
  65. >
  66. <template #reference>
  67. <img :src="scope.row.manage_heigh === 0 ? cenImg : scope.row.manage_heigh === 1 ? topImg : botImg" alt="">
  68. </template>
  69. </el-popover>
  70. </template>
  71. </el-table-column>
  72. <el-table-column label="管理扣分" align="center">
  73. <template #default="scope">
  74. <el-popover
  75. placement="right-start"
  76. :title="scope.row.company +' '+ scope.row.score"
  77. :width="200"
  78. trigger="hover"
  79. :content="scope.row.manage_low_note"
  80. >
  81. <template #reference>
  82. <img :src="scope.row.manage_low === 0 ? cenImg : scope.row.manage_low === 1 ? topImg : botImg" alt="">
  83. </template>
  84. </el-popover>
  85. </template>
  86. </el-table-column>
  87. <el-table-column label="高于基准" align="center">
  88. <template #default="scope">
  89. <el-popover
  90. placement="right-start"
  91. :title="scope.row.company +' '+ scope.row.score"
  92. :width="200"
  93. trigger="hover"
  94. :content="scope.row.standard_heigh_note"
  95. >
  96. <template #reference>
  97. <img :src="scope.row.standard_heigh === 0 ? cenImg : scope.row.standard_heigh === 1 ? topImg : botImg" alt="">
  98. </template>
  99. </el-popover>
  100. </template>
  101. </el-table-column>
  102. <el-table-column label="低于基准" align="center">
  103. <template #default="scope">
  104. <el-popover
  105. placement="right-start"
  106. :title="scope.row.company +' '+ scope.row.score"
  107. :width="200"
  108. trigger="hover"
  109. :content="scope.row.standard_low_note"
  110. >
  111. <template #reference>
  112. <img :src="scope.row.standard_low === 0 ? cenImg : scope.row.standard_low === 1 ? topImg : botImg" alt="">
  113. </template>
  114. </el-popover>
  115. </template>
  116. </el-table-column>
  117. </el-table>
  118. </el-col>
  119. <el-col :span="12" v-if="evaluationSeasonDataRight.length>0">
  120. <el-table :data="evaluationSeasonDataRight" style="width: 100%">
  121. <el-table-column label="排名" prop="rank" width="50" align="center" />
  122. <el-table-column label="单位名称" prop="company">
  123. <template #default="scope">
  124. <span class="companyStyle">{{scope.row.company}}</span>
  125. </template>
  126. </el-table-column>
  127. <el-table-column label="得分" prop="score" align="center" />
  128. <el-table-column label="加分事项" align="center">
  129. <template #default="scope">
  130. <el-popover
  131. placement="right-start"
  132. :title="scope.row.company +' '+ scope.row.score"
  133. :width="200"
  134. trigger="hover"
  135. :content="scope.row.matter_heigh_note"
  136. >
  137. <template #reference>
  138. <img :src="scope.row.matter_heigh === 0 ? cenImg : scope.row.matter_heigh === 1 ? topImg : botImg" alt="">
  139. </template>
  140. </el-popover>
  141. </template>
  142. </el-table-column>
  143. <el-table-column label="扣分事项" align="center">
  144. <template #default="scope">
  145. <el-popover
  146. placement="right-start"
  147. :title="scope.row.company +' '+ scope.row.score"
  148. :width="200"
  149. trigger="hover"
  150. :content="scope.row.matter_low_note"
  151. >
  152. <template #reference>
  153. <img :src="scope.row.matter_low === 0 ? cenImg : scope.row.matter_low === 1 ? topImg : botImg" alt="">
  154. </template>
  155. </el-popover>
  156. </template>
  157. </el-table-column>
  158. <el-table-column label="管理加分" align="center">
  159. <template #default="scope">
  160. <el-popover
  161. placement="right-start"
  162. :title="scope.row.company +' '+ scope.row.score"
  163. :width="200"
  164. trigger="hover"
  165. :content="scope.row.manage_heigh_note"
  166. >
  167. <template #reference>
  168. <img :src="scope.row.manage_heigh === 0 ? cenImg : scope.row.manage_heigh === 1 ? topImg : botImg" alt="">
  169. </template>
  170. </el-popover>
  171. </template>
  172. </el-table-column>
  173. <el-table-column label="管理扣分" align="center">
  174. <template #default="scope">
  175. <el-popover
  176. placement="right-start"
  177. :title="scope.row.company +' '+ scope.row.score"
  178. :width="200"
  179. trigger="hover"
  180. :content="scope.row.manage_low_note"
  181. >
  182. <template #reference>
  183. <img :src="scope.row.manage_low === 0 ? cenImg : scope.row.manage_low === 1 ? topImg : botImg" alt="">
  184. </template>
  185. </el-popover>
  186. </template>
  187. </el-table-column>
  188. <el-table-column label="高于基准" align="center">
  189. <template #default="scope">
  190. <el-popover
  191. placement="right-start"
  192. :title="scope.row.company +' '+ scope.row.score"
  193. :width="200"
  194. trigger="hover"
  195. :content="scope.row.standard_heigh_note"
  196. >
  197. <template #reference>
  198. <img :src="scope.row.standard_heigh === 0 ? cenImg : scope.row.standard_heigh === 1 ? topImg : botImg" alt="">
  199. </template>
  200. </el-popover>
  201. </template>
  202. </el-table-column>
  203. <el-table-column label="低于基准" align="center">
  204. <template #default="scope">
  205. <el-popover
  206. placement="right-start"
  207. :title="scope.row.company +' '+ scope.row.score"
  208. :width="200"
  209. trigger="hover"
  210. :content="scope.row.standard_low_note"
  211. >
  212. <template #reference>
  213. <img :src="scope.row.standard_low === 0 ? cenImg : scope.row.standard_low === 1 ? topImg : botImg" alt="">
  214. </template>
  215. </el-popover>
  216. </template>
  217. </el-table-column>
  218. </el-table>
  219. </el-col>
  220. </el-row>
  221. </el-dialog>
  222. </div>
  223. </template>
  224. <script>
  225. import {apiGetevaluationportallist} from '../../api/api'
  226. import topImg from '../../assets/getwayImg/topNewS.png'
  227. import botImg from '../../assets/getwayImg/botNewS.png'
  228. import cenImg from '../../assets/getwayImg/cenNew.png'
  229. export default {
  230. data() {
  231. return {
  232. dialogVisible: false,
  233. evaluationSeasonDataLeft: [],
  234. evaluationSeasonDataRight: [],
  235. optionArr: [],
  236. optionName: '',
  237. newyearData: '',
  238. yearData: '',
  239. seasonData: '',
  240. topImg: topImg,
  241. botImg: botImg,
  242. cenImg: cenImg,
  243. winPix: window.devicePixelRatio,
  244. innerWidth: window.innerWidth
  245. }
  246. },
  247. created() {
  248. this.optionArr = [
  249. {
  250. label: '火电板块',
  251. value: 'HD'
  252. },
  253. {
  254. label: '水电板块',
  255. value: 'SD'
  256. },
  257. {
  258. label: '新能源',
  259. value: 'XNYFG'
  260. },
  261. {
  262. label: '海外业务',
  263. value: 'GJYW'
  264. },
  265. {
  266. label: '煤电一体化',
  267. value: 'MDYTH'
  268. },
  269. {
  270. label: '综合支持',
  271. value: 'ZHZC'
  272. }
  273. ]
  274. },
  275. methods: {
  276. init(name, newyear, year, season) {
  277. this.dialogVisible = true
  278. this.optionName = name
  279. this.newyearData = newyear
  280. this.yearData = year
  281. this.seasonData = season
  282. this.evaluationSeasonDataLeft = []
  283. this.evaluationSeasonDataRight = []
  284. this.getYearData(name, newyear, year, season)
  285. },
  286. seasonWidth() {
  287. if (this.innerWidth < 1800) {
  288. if (this.evaluationSeasonDataRight.length>0) {
  289. return '97vw'
  290. } else {
  291. return '55vw'
  292. }
  293. } else {
  294. if (this.winPix === 1.25 || this.innerWidth < 1800) {
  295. if (this.evaluationSeasonDataRight.length>0) {
  296. return '97vw'
  297. } else {
  298. return '55vw'
  299. }
  300. } else {
  301. if (this.evaluationSeasonDataRight.length>0) {
  302. return '80vw'
  303. } else {
  304. return '40vw'
  305. }
  306. }
  307. }
  308. },
  309. changeOption(val) {
  310. this.evaluationSeasonDataLeft = []
  311. this.evaluationSeasonDataRight = []
  312. this.getYearData(val, this.newyearData, this.yearData, this.seasonData)
  313. },
  314. getYearData(name, newyear, year, season) {
  315. let that = this
  316. let params = {
  317. binSection: name,
  318. newyear: newyear,
  319. year: year,
  320. season: season === '第一季度' ? '1' : season === '第二季度' ? '2' : '3'
  321. }
  322. apiGetevaluationportallist(params).then(datas =>{
  323. if (datas && datas.data && datas.data.season) {
  324. if (datas.data.season[name].length>0) {
  325. datas.data.season[name].forEach((item, index) =>{
  326. item.rank = index+1
  327. item.score = item.score.toFixed(2)
  328. })
  329. if (datas.data.season[name].length>15) {
  330. that.evaluationSeasonDataLeft = datas.data.season[name].splice(0, 15)
  331. that.evaluationSeasonDataRight = datas.data.season[name]
  332. } else {
  333. that.evaluationSeasonDataLeft = datas.data.season[name]
  334. }
  335. }
  336. }
  337. })
  338. }
  339. }
  340. }
  341. </script>
  342. <style lang="less">
  343. .seasonLeagueTable{
  344. .el-overlay{
  345. .el-dialog{
  346. // margin-top: 5vh !important;
  347. .el-dialog__header{
  348. .seasonHeader{
  349. width: 97%;
  350. display: flex;
  351. justify-content: space-between;
  352. .el-select{
  353. width: 120px;
  354. .el-input__inner{
  355. height:28px;
  356. }
  357. .el-input__suffix{
  358. .el-select__caret{
  359. line-height:28px;
  360. }
  361. }
  362. }
  363. }
  364. }
  365. .seasonFrom{
  366. padding: 0 20px;
  367. .el-table{
  368. .el-table__inner-wrapper{
  369. .el-table__body-wrapper{
  370. .el-table__body{
  371. .companyStyle{
  372. width: 100%;
  373. display: inline-block;
  374. overflow: hidden;
  375. text-overflow: ellipsis;
  376. white-space: nowrap;
  377. }
  378. }
  379. }
  380. }
  381. }
  382. }
  383. }
  384. }
  385. }
  386. </style>