downXlsx.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. import * as XLSX from 'xlsx'
  2. import { saveAs } from 'file-saver'
  3. import * as XLSXD from 'xlsx-js-style'
  4. const exportExcel = (el, header, title) => {
  5. let $e = el
  6. try {
  7. let $table = $e.querySelector('.el-table__fixed')
  8. if(!$table) {
  9. $table = $e
  10. }
  11. const wb = XLSX.utils.table_to_book($table, {raw:true})
  12. if (wb && wb.Sheets.Sheet1) {
  13. let as = ['!cols', '!fullref', '!merges', '!ref', '!rows']
  14. let bs = header
  15. for(let i in wb.Sheets.Sheet1) {
  16. if (as.indexOf(i)<0) {
  17. if (bs.indexOf(wb.Sheets.Sheet1[i].v)>=0) {
  18. wb.Sheets.Sheet1[i].s = {
  19. font:{
  20. name: '微软雅黑',
  21. sz: 11,
  22. bold: true,
  23. color: {rgb: 'ffffff'}
  24. },
  25. alignment: {
  26. horizontal: 'center',
  27. vertical: 'center'
  28. },
  29. fill:{fgColor: {rgb: '4f81bd'}}
  30. }
  31. if (i === 'A1') {
  32. wb.Sheets.Sheet1['!cols'].push({wch: 30})
  33. } else if (i === 'B1') {
  34. wb.Sheets.Sheet1['!cols'].push({wch: 20})
  35. } else {
  36. wb.Sheets.Sheet1['!cols'].push({wch: 15})
  37. }
  38. } else {
  39. wb.Sheets.Sheet1[i].s = {
  40. font:{
  41. name: '微软雅黑',
  42. sz: 10,
  43. bold: false,
  44. color: {rgb: '000000'}
  45. },
  46. alignment: {
  47. horizontal: 'center',
  48. vertical: 'center'
  49. },
  50. // fill:{fgColor: {rgb: '4f81bd'}}
  51. }
  52. }
  53. }
  54. }
  55. }
  56. const wbout = XLSXD.write(wb, {bookType: 'xlsx', bookSST:true, type: 'array'})
  57. saveAs(
  58. new Blob([wbout],{type: 'application/octet-stream'}),
  59. `${title}.xlsx`,
  60. )
  61. } catch (e) {
  62. if (typeof console !== 'undefined') console.error(e)
  63. }
  64. }
  65. export default {
  66. exportExcel
  67. }