achievementKDetail.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. <template>
  2. <div class="startFrom">
  3. <el-dialog title="业绩考核系数详情" v-model="dialogVisible" :fullscreen="true" :close-on-click-modal="false">
  4. <div class="startDetail">
  5. <p class="starttitleSty">基础信息:</p>
  6. <el-row class="danjuMsg">
  7. <el-col :span="10">
  8. <div class="danjuMsg_data">
  9. <span class="data_tit">单位名称:</span>
  10. <span>{{receiptMsg.organizationName}}</span>
  11. </div>
  12. </el-col>
  13. <el-col :span="12">
  14. <div class="danjuMsg_data">
  15. <span class="data_tit">年度:</span>
  16. <span>{{receiptMsg.year}}</span>
  17. </div>
  18. </el-col>
  19. <el-col :span="24">
  20. <div class="danjuMsg_data">
  21. <span class="data_tit data_tit_1">业务简述:</span>
  22. <span>{{receiptMsg.desc}}</span>
  23. </div>
  24. </el-col>
  25. </el-row>
  26. <div class="detaTableBtns">
  27. <div class="tableBtn import" @click="handleImport">
  28. <img :src="importIcon" alt="">
  29. <span>导入</span>
  30. </div>
  31. <div class="tableBtn export" @click="handleExport">
  32. <img :src="exportIcon" alt="">
  33. <span>导出</span>
  34. </div>
  35. </div>
  36. <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
  37. <el-tab-pane label="业绩考核系数明细" name="first">
  38. <!-- @select="rowClick" @select-all="rowClick" -->
  39. <el-table :data="weightAllocation" style="width: 100%" ref="report-table_day">
  40. <!-- <el-table-column type="selection" label="操作" align="center"></el-table-column> -->
  41. <el-table-column type="index" label="序号" width="80" />
  42. <el-table-column label="考评单位" prop="organizationName" width="300"/>
  43. <el-table-column label="资产管理系数" align="center">
  44. <el-table-column label="资产总额" prop="zzc" />
  45. <el-table-column label="K1" prop="k1" />
  46. </el-table-column>
  47. <el-table-column label="幅度管理系数" align="center">
  48. <el-table-column label="机组" prop="jzs" />
  49. <el-table-column label="K2" prop="k2" />
  50. </el-table-column>
  51. <el-table-column label="效益贡献系数" align="center">
  52. <el-table-column label="账面利润总额" prop="zmlrze" />
  53. <el-table-column label="发电量" prop="fdl" />
  54. <el-table-column label="度电利润" prop="ddlr" />
  55. <el-table-column label="K3" prop="k3" />
  56. </el-table-column>
  57. <el-table-column label="定员管理系数" align="center">
  58. <el-table-column label="定员" prop="dy" />
  59. <el-table-column label="K4" prop="k4" />
  60. </el-table-column>
  61. <el-table-column label="K" prop="k" />
  62. <el-table-column label="填报人" prop="createName" />
  63. <el-table-column label="填报日期" prop="createTime" width="160" />
  64. </el-table>
  65. </el-tab-pane>
  66. </el-tabs>
  67. </div>
  68. <template #footer>
  69. <span class="dialog-footer">
  70. <el-button type="primary" @click="dialogVisible = false">取 消</el-button>
  71. </span>
  72. </template>
  73. </el-dialog>
  74. <import-dailog ref="importPage" @successImport="successImport"></import-dailog>
  75. </div>
  76. </template>
  77. <script>
  78. import importDailog from '../importPage/importDailog.vue'
  79. import {apigetyeargroupcoefficientlistById} from '../../api/api'
  80. import exportIcon from '../../assets/btnIcon/export.png'
  81. import importIcon from '../../assets/btnIcon/import.png'
  82. import ExcelJS from 'exceljs'
  83. import fileSave from 'file-saver'
  84. import * as XLSX from 'xlsx'
  85. import { saveAs } from 'file-saver'
  86. import * as XLSXD from 'xlsx-js-style'
  87. export default {
  88. components: {
  89. importDailog
  90. },
  91. data() {
  92. return {
  93. dialogVisible: false,
  94. activeName: 'first',
  95. quantifiedList: [],
  96. nonQuantifiedList: [],
  97. changeDateSelect: [],
  98. receiptMsg: {
  99. organizationName: '',
  100. des: '',
  101. year: '',
  102. },
  103. exportIcon: exportIcon,
  104. importIcon: importIcon,
  105. rowMsg: {},
  106. weightAllocation: []
  107. }
  108. },
  109. created() {
  110. },
  111. methods: {
  112. init(row) {
  113. this.dialogVisible = true
  114. this.activeName = 'first'
  115. this.getDetails(row.id)
  116. this.rowMsg = row
  117. },
  118. handleClick() {
  119. this.changeDateSelect = []
  120. },
  121. rowClick(selection, row) {
  122. this.changeDateSelect = selection
  123. },
  124. //获取详情
  125. getDetails(id) {
  126. let that = this
  127. let params = {
  128. id: id
  129. }
  130. apigetyeargroupcoefficientlistById(params).then(datas =>{
  131. if (datas && datas.data) {
  132. that.receiptMsg = {
  133. organizationName: datas.data.createOrgName,
  134. year: datas.data.year,
  135. desc: datas.data.des
  136. }
  137. that.weightAllocation = datas.data.coefficientList
  138. }
  139. })
  140. },
  141. handleImport() {
  142. this.$refs.importPage.upload.title = "业绩考核系数信息导入"
  143. this.$refs.importPage.upload.open = true
  144. this.$refs.importPage.upload.url = '/year-operating-coefficient/import'
  145. },
  146. successImport(val) {
  147. this.getDetails(this.rowMsg.id)
  148. },
  149. handleExport() {
  150. let data = [] //接口返回数据
  151. data = this.weightAllocation
  152. const workbook = new ExcelJS.Workbook()
  153. const worksheet = workbook.addWorksheet('Sheet1')
  154. //根据数据自己调整
  155. worksheet.columns = [
  156. { header: 'ID', key: 'id', width: 26 },
  157. { header: '考评单位ID', key: 'organizationId', width: 26 },
  158. { header: '考评单位', key: 'organizationName', width: 26 },
  159. { header: '资产管理系数', key: 'zzc', width: 18},
  160. { header: '', key: 'k1', width: 18 },
  161. { header: '幅度管理系数', key: 'jzs', width: 18 },
  162. { header: '', key: 'k2', width: 18 },
  163. { header: '效益贡献系数', key: 'zmlrze', width: 18 },
  164. { header: '', key: 'fdl', width: 18 },
  165. { header: '', key: 'ddlr', width: 18 },
  166. { header: '', key: 'k3', width: 18 },
  167. { header: '定员管理系数', key: 'dy', width: 18 },
  168. { header: '', key: 'k4', width: 18 },
  169. { header: 'K', key: 'k', width: 26 },
  170. { header: '填报人', key: 'createName', width: 26 },
  171. { header: '填报日期', key: 'createTime', width: 26 },
  172. ]
  173. // worksheet.getColumn(3).values = ['资产管理系数', '资产总额'];
  174. // worksheet.getColumn(4).values = ['', 'K1'];
  175. // worksheet.getColumn(5).values = ['幅度管理系数', '机组'];
  176. // worksheet.getColumn(6).values = ['', 'K2'];
  177. // worksheet.getColumn(7).values = ['效益贡献系数', '账面利润总额'];
  178. // worksheet.getColumn(8).values = ['', '发电量'];
  179. // worksheet.getColumn(9).values = ['', '度电利润'];
  180. // worksheet.getColumn(10).values = ['', 'K3'];
  181. // worksheet.getColumn(11).values = ['定员管理系数', '定员'];
  182. // worksheet.getColumn(12).values = ['', 'K4'];
  183. worksheet.getColumn(4).values = ['资产管理系数', '资产总额'];
  184. worksheet.getColumn(5).values = ['', 'K1'];
  185. worksheet.getColumn(6).values = ['幅度管理系数', '机组'];
  186. worksheet.getColumn(7).values = ['', 'K2'];
  187. worksheet.getColumn(8).values = ['效益贡献系数', '账面利润总额'];
  188. worksheet.getColumn(9).values = ['', '发电量'];
  189. worksheet.getColumn(10).values = ['', '度电利润'];
  190. worksheet.getColumn(11).values = ['', 'K3'];
  191. worksheet.getColumn(12).values = ['定员管理系数', '定员'];
  192. worksheet.getColumn(13).values = ['', 'K4'];
  193. //合并单元格
  194. worksheet.mergeCells('A1:A2');
  195. worksheet.mergeCells('B1:B2');
  196. worksheet.mergeCells('C1:C2');
  197. worksheet.mergeCells('D1:E1');
  198. worksheet.mergeCells('F1:G1');
  199. worksheet.mergeCells('H1:I1:G1:K1');
  200. worksheet.mergeCells('L1:M1');
  201. worksheet.mergeCells('N1:N2');
  202. worksheet.mergeCells('O1:O2');
  203. worksheet.mergeCells('P1:P2');
  204. worksheet.getRow(1).font = {
  205. size: 12,
  206. bold: true
  207. }
  208. worksheet.getRow(2).font = {
  209. size: 12,
  210. bold: true
  211. }
  212. worksheet.addRows(data)
  213. workbook.xlsx.writeBuffer().then(buffer => {
  214. //这里为type
  215. const blob = new Blob([buffer], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8' })
  216. fileSave(blob, `数据导出.xlsx`)
  217. })
  218. },
  219. exportExcel() {
  220. let $e = this.$refs['report-table_day'].$el
  221. try {
  222. let $table = $e.querySelector('.el-table__fixed')
  223. if(!$table) {
  224. $table = $e
  225. }
  226. const wb = XLSX.utils.table_to_book($table, {raw:true})
  227. const wbout = XLSXD.write(wb, {bookType: 'xlsx', bookSST:true, type: 'array'})
  228. saveAs(
  229. new Blob([wbout],{type: 'application/octet-stream'}),
  230. `权重分配数据导出.xlsx`,
  231. )
  232. } catch (e) {
  233. if (typeof console !== 'undefined') console.error(e)
  234. }
  235. }
  236. }
  237. }
  238. </script>
  239. <style lang="less">
  240. .startFrom{
  241. .el-overlay{
  242. .el-dialog{
  243. // margin-top: 7vh;
  244. .el-dialog__body{
  245. padding: 0 20px !important;
  246. .startDetail{
  247. .starttitleSty{
  248. font-size: 18px;
  249. font-family: Microsoft YaHei;
  250. font-weight: bold;
  251. color: #3B7AD1;
  252. // line-height: 12px;
  253. margin: 20px 0 20px 10px;
  254. }
  255. .danjuMsg{
  256. border: 1px solid #D6DBEA;
  257. padding: 10px 20px;
  258. border-radius: 10px;
  259. .danjuMsg_data{
  260. padding: 5px 0 10px 0;
  261. .data_tit{
  262. margin-right: 10px;
  263. font-weight: bold;
  264. font-size: 14px;
  265. font-family: Microsoft YaHei;
  266. color: #8991B0;
  267. }
  268. .data_tit_wd{
  269. display: inline-block;
  270. width: 90px;
  271. }
  272. .el-form-item--small{
  273. .el-input{
  274. height: 25px;
  275. width: 160px;
  276. }
  277. margin-bottom: 0;
  278. .el-input-number{
  279. height: 25px;
  280. .el-input-number__decrease, .el-input-number__increase{
  281. right: -39px;
  282. }
  283. }
  284. }
  285. }
  286. }
  287. .el-select, .el-input{
  288. width: 100%;
  289. }
  290. .detaTableBtns{
  291. display: flex;
  292. justify-content: flex-end;
  293. width: 100%;
  294. position: relative;
  295. top: 32px;
  296. z-index: 11111;
  297. .tableBtn {
  298. display: flex;
  299. margin-right: 30px;
  300. // width: 13%;
  301. width: fit-content;
  302. img{
  303. margin-right: 5px;
  304. margin-top: 1px;
  305. }
  306. span{
  307. display: inline-block;
  308. width: 35px;
  309. font-size: 14px;
  310. font-family: Microsoft YaHei;
  311. font-weight: 400;
  312. }
  313. }
  314. .import{
  315. cursor: pointer;
  316. span{
  317. color: #ce1e78;
  318. }
  319. }
  320. .export{
  321. cursor: pointer;
  322. span{
  323. color: #2baa8a;
  324. }
  325. }
  326. }
  327. .el-tabs{
  328. .el-tabs__header{
  329. .el-tabs__nav{
  330. .el-tabs__item{
  331. font-size: 18px;
  332. font-family: Microsoft YaHei;
  333. font-weight: bold;
  334. margin: 0 10px;
  335. color: #8991B0;
  336. }
  337. .is-active{
  338. font-size: 18px;
  339. font-family: Microsoft YaHei;
  340. font-weight: bold;
  341. color: #3B7AD1;
  342. margin: 0 10px;
  343. }
  344. }
  345. }
  346. .el-table{
  347. .el-table__body-wrapper{
  348. height: 53vh;
  349. }
  350. .el-table__row{
  351. .cell{
  352. .el-input{
  353. height: 24px;
  354. .el-input__inner{
  355. height: 24px;
  356. }
  357. }
  358. }
  359. }
  360. }
  361. }
  362. }
  363. }
  364. .el-dialog__footer{
  365. .dialog-footer{
  366. display: flex;
  367. justify-content: center;
  368. .el-button{
  369. width: 180px !important;
  370. height: 40px !important;
  371. }
  372. }
  373. }
  374. }
  375. }
  376. }
  377. </style>