Eelement el-table XLSX 固定左右 两边 淡出excel数据重复问题

<template>
      <el-form :inline="true">
        <el-button type="primary" @click="exportTable">导出</el-button>
      </el-form>
</template>

<script>
import FileSaver from "file-saver";
import XLSX from "xlsx";
export default {
    
    
  data() {
    return{
      
    }
  },
  created() {




  },
  methods: {
exportTable(){
    // 导出 element el-table   
    			
这是你的table id = out-table
## <el-table id="out-table" :data="userlisttopup" highlight-current-row v-loading="loading" style="width: 100%;">

      **var fix = document.querySelector('.el-table__fixed') //左右固定 这两个都要写要写这两个
          fix = document.querySelector('.el-table__fixed-right')**
   
     
      var wb;
 
     if(fix){
      wb = XLSX.utils.table_to_book(document.querySelector("#out-table").removeChild(fix));
            document.querySelector("#out-table").appendChild(fix);
     }else{
         wb = XLSX.utils.table_to_book(document.querySelector("#out-table"));
     }
        var wbout = XLSX.write(wb, {
            bookType: "xlsx",
            bookSST: true,
            type: "array", 
        });

         try {
              FileSaver.saveAs(
               new Blob([wbout],{
                type: 'application/octet-stream'
                }), 
                'sheetjs.xlsx'
                );
         } catch (e) { 
           if (typeof console !== 'undefined') console.log(e, wbout)
              
              }
         return wbout
        }

  },

};
</script>

<style scoped>
</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值