xlsx-populate handsontable导出excel(单个sheet)

handsontable数据分页(element-ui 分页)显示,但是导出时导出所有页面的数据

handsontable数据展示图
导出效果图
<div style="height: 48px; text-align: right; padding: 10px 0px;">
      <!-- 分页 -->
        <el-pagination
          @size-change="handleSizeChange"
          @current-change="handleCurrentChange"
          :current-page="currentPage"
          :page-sizes="[ 10, 15, 20, 50, 100, 200, 500, 1000, 2000]"
          :page-size="pageSize"
          layout="total, sizes, prev, pager, next, jumper"
          :total="totalRow">
        </el-pagination>
    </div>
    <div style="height: calc(100% - 50px);border: 1px solid #ccc; margin-left: 5px;">
      <div id="handsontable" ></div>
    </div>
import XlsxPopulate from '../../common/js/xlsx-populate';
computed: {
      ...mapGetters([ 'queryData', 'tableSrc', 'pageSize', 'currentPage']),
      pagination: function(){
        return this.currentPage*this.pageSize;
      },
      //列数
      colNum: function(){
        return this.colTitles.length ? this.colTitles.length : 0;
      },
      //金额列索引
      moneyColIndex: function(){
        let arr = [];
        this.colTitles.forEach(function(item, index){
          if(item['en'] == 'lastBalande' || item['en'] == 'thisMoney' 
                    || item['en'] == 'sumMoney'){
            arr.push(index);
          }
        });
        return arr;
      },
      //显示的列英文
      showColEns: function(){
        let arr = [];
        this.colTitles.forEach(function(item){
          arr.push(item['en']);
        });
        return arr;
      },
    },

 watch: {
      //this.currentPage 或this.pageSize 变化就更新表数据
      pagination: function(){
        this.setTaleDT();
      },
}

 handleSizeChange(pageSize) {
        this.setPageSize(pageSize);
      },
      handleCurrentChange(currentPage) {
        this.setCurrentPage(currentPage);
      },
let hsDT = [...]; //所有数据
 let setting = {
          data: head.concat(hsDT.slice((this.currentPage-1)*this.pageSize, 
                                                   this.currentPage*this.pageSize)) ,
          colHeaders: true,
          mergeCells: head.mergeCells, 
          cells: this.myCells,
        };
        if(this.hot){
          this.hot.destroy();
          this.hot = null;
        }
        this.hot = creatHandsontable('handsontable', setting);

export const creatHandsontable = (id,setting)=>{
  let hot = new Handsontable(document.getElementById(id), {
    data: setting.data ? setting.data : [],
    colHeaders:  setting.colHeaders ? setting.colHeaders: true ,
    rowHeaders: true,
    mergeCells: setting.mergeCells ? setting.mergeCells : true ,
    readOnly: setting.readOnly ? setting.readOnly : true,
    cells: setting.cells ? setting.cells : function(){},
    colWidths: setting.colWidths ,
    rowHeights: setting.rowHeights  ? setting.rowHeights : 32,
    autoColumnSize: true,
    // autoRowSize: true,
    className: 'htCenter htMiddle',//水平  垂直居中
    outsideClickDeselects: false,
    maxRows: setting.data.length ? 
                        setting.data.length : 0,//防止鼠标拖动最后一个元素的时候会自动增加几行
    manualColumnResize: setting.manualColumnResize ? setting.manualColumnResize : true,
    manualRowResize: setting.manualRowResize ? setting.manualRowResize : true,
  });
  hot.selectCell(0, 0);
  return hot;
};
   setTaleDT(){
        let head = this.getHeaderData();//表头数据
        this.hsDT = [];
        let self = this;
        this.tableDT.forEach(function(obj){
          let arr = [];
          //表头数据
          self.colTitles.forEach(function(item, index){
            arr[index] = obj[item['en']];
          });
          self.hsDT.push(arr);
        });
        let setting = {
          data: head.headDT.concat(this.hsDT.slice((this.currentPage-1)*this.pageSize, 
                                                           this.currentPage*this.pageSize)) ,
          colHeaders: true,
          mergeCells: head.mergeCells, 
          cells: this.myCells,
        };
        if(this.hot){
          this.hot.destroy();
          this.hot = null;
        }
        this.hot = creatHandsontable('handsontable', setting);
      },
 getHeaderData(){
        let headDT = new Array(5);//表头数据 二维数组 5行
        headDT[0] = new Array(this.colNum);
        headDT[0][0] = this.headerMap.title ? this.headerMap.title
                           +  '<br>'+ this.headerMap.resultStr: '';
        headDT[1] = new Array(this.colNum);
        headDT[1][0] = this.headerMap.subTitle ? this.headerMap.subTitle : '';
        headDT[2] = new Array(this.colNum);
        headDT[2][this.colNum-1] = this.headerMap.unit ? this.headerMap.unit : '';
        headDT[3] = [];
        headDT[4] = [];
        let colMerges = [];
        this.colTitles.forEach(function(item, index){
          headDT[3].push(item['cn']);
          colMerges.push({
            row: 3,
            col: index,
            rowspan: 2,
            colspan: 1,
          });
        });
        let mergeCells = [
          { row: 0, col: 0, rowspan: 1, colspan: this.colNum},
          { row: 1, col: 0, rowspan: 1, colspan: this.colNum-1},
          { row: 2, col: 0, rowspan: 1, colspan: this.colNum-1},
            ...colMerges,
        ];
        return {
          headDT:  headDT,
          mergeCells: mergeCells
        };
      } 
   myCells: function(row, col, props) {
        let self = this;
        return {
          renderer: function (instance, td, row, col, prop, value, cellProps) {
            self.getTd( td, row, col, value);
          },
        }
      },

 getTd(td, row, col, value){
        td.innerHTML = value ? value: '';
        td.style.verticalAlign =  'middle';
        td.style.fontSize =  '10px';
        td.style.fontFamily =  '宋体';
        td.style.overflow = 'hidden';
        td.style.textOoverflow = 'ellipsis';
        td.style.whiteSpace = 'nowrap';
        if(row == 0){//标题
          td.style.textAlign = 'center';
          td.style.fontWeight = 'bold';
          td.style.fontSize =  '14px';
          td.style.textDecoration =  'underline';
          td.innerHTML = value;
        }
        // else if( row == 2 && col == self.colNum-1){//单位
        else if( row == 2 && col == this.colNum-1){//单位
          td.style.textAlign = 'right';
        }
        else if(row == 3 ){//列头
          td.style.textAlign = 'center';
          td.style.fontWeight = 'bold';
          td.style.fontSize =  '12px';
        }
        else if( row >4 && this.moneyColIndex.indexOf(col) > -1 ){//金额
          td.style.textAlign = 'right';
          td.innerText = value ? money2Thousand(value) : "0.00";
        }
        else{
          td.style.textAlign = 'left';
        }
        return td;
      },

 //导出
      exportFile(){
        if(this.hot && this.hot.getData().length != 0) {
          // writeFile(this.hot, '旬报', this.hsDT);
          let hsDT = this.getHeaderData().headDT.concat(this.hsDT);
          this.writeFile(this.hot, '旬报', hsDT);
        }else{
          Message.error('没有数据可导出!');
        }
      },
writeFile(hot, reportName, hsDT) {
        let _this = this;
        // Load a new blank workbook
        XlsxPopulate.fromBlankAsync().then(function(workbook) {
          console.log(workbook);
          // Modify the workbook.
          let sheet = workbook.sheet('Sheet1').name(reportName);
          let data = hsDT ?  hsDT : hot.getData();
          let range = sheet.range(1, 1, data.length, data[0].length);
          data[0][0] = data[0][0].replace('<br>', '\r\n');//显示的时候不换行 编辑时才换行
          range.value(data);

          // 设置行高, 列宽
          for (let i = 1; i <= data.length; i++) {
            console.log(hot.getRowHeight(i - 1));
            sheet.row(i).height(hot.getRowHeight(i - 1));
          }
          for (let i = 1; i <= data[0].length; i++) {
            console.log(hot.getColWidth(i - 1));
            sheet.column(i).width(hot.getColWidth(i - 1) / 8);
          }

          // 合并单元格
          let mergeCells = hot.getSettings().mergeCells;
          // 判断mergeCells是否为数组
          if (Object.prototype.toString.call(mergeCells) !== '[object Array]') {
            mergeCells = [];
          }

          mergeCells.forEach(o => {
            //合并单元格
            sheet
              .range(o.row + 1, o.col + 1, o.row + o.rowspan, o.col + o.colspan)
              .merged(true);
          });
    
          for (let i = 0; i < data.length; i++) {
            for (let j = 0, row = data[i], l = row.length; j < l; j++) {
              // let td = hot.getCell(i, j);
              let td = _this.getTd({"style": {}}, i, j);
              let fontSize = td.style.fontSize ? parseInt(td.style.fontSize, 10) : 14;
              let bold = td.style.fontWeight
                ? td.style.fontWeight !== 'normal'
                : false;
              let italic = td.style.fontStyle
                ? td.style.fontStyle !== 'normal'
                : false;
              let fontColor = td.style.color ? rgb2Hex(td.style.color).slice(1) : '';
              let verticalAlignment = td.style.verticalAlign  ? 
                         td.style.verticalAlign === 'middle'  ?                                   
                          'center'  :  td.style.verticalAlign : 'center';
              let horizontalAlignment = td.style.textAlign  ? td.style.textAlign : 'left';

              let underline = td.style.textDecoration ?  td.style.textDecoration : '';
              let bgColor = td.style.backgroundColor ?  td.style.backgroundColor : '';
              let fill = rgb2Hex(bgColor).slice(1);
              let wrapText = _this.moneyColIndex.indexOf(j) > -1 ? true : false; // 自动换行

              let cell = sheet.cell(i + 1, j + 1);           
              if(i == 0 && j == 0){
                // cell.h = '月报22'+'<br/>'+'2018年09月';
                cell.cellHTML = true;
              }
              cell.style({
                fontSize,
                bold,
                italic,
                fontColor,
                verticalAlignment,
                horizontalAlignment,
                underline,
                wrapText
              });
              fill && cell.style({  fill  });
              if( i > 4 && _this.moneyColIndex.indexOf(j) > -1 ){
                cell.style({  numberFormat: "#,##0.00"  });
              }
              if( i > 4){
                cell.style({  border: true  });
              }
            }
          }

          // Write to file.
          workbook.outputAsync().then(function(blob) {
            if (window.navigator && window.navigator.msSaveOrOpenBlob) {
              // If IE, you must uses a different method.
              window.navigator.msSaveOrOpenBlob(blob, reportName + '.xlsx');
            } else {
              let url = window.URL.createObjectURL(blob);
              let a = document.createElement('a');
              document.body.appendChild(a);
              a.href = url;
              a.download = reportName + '.xlsx';
              a.click();
              window.URL.revokeObjectURL(url);
              document.body.removeChild(a);
            }
          })
        })
      }
export function rgb2Hex(colorStr) {
  // 十六进制颜色值的正则表达式
  let reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/
  // 如果是rgb颜色表示
  if (/^(rgb|RGB)/.test(colorStr)) {
    let aColor = colorStr.replace(/(?:\(|\)|rgb|RGB)*/g, '').split(',')
    let strHex = '#'
    for (let i = 0; i < aColor.length; i++) {
      let hex = Number(aColor[i]).toString(16)
      if (hex === '0') {
        hex += hex
      }
      strHex += hex
    }
    if (strHex.length !== 7) {
      strHex = colorStr
    }
    return strHex
  } else if (reg.test(colorStr)) {
    let aNum = colorStr.replace(/#/, '').split('')
    if (aNum.length === 6) {
      return colorStr
    } else if (aNum.length === 3) {
      let numHex = '#'
      for (let i = 0; i < aNum.length; i += 1) {
        numHex += aNum[i] + aNum[i]
      }
      return numHex
    }
  }
  return colorStr
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,501评论 25 707
  • 1、通过CocoaPods安装项目名称项目信息 AFNetworking网络请求组件 FMDB本地数据库组件 SD...
    阳明先生_x阅读 15,968评论 3 119
  • 好玩儿,这个游戏! 这个游戏分为上半场和下半场。 在上半场游戏中,游戏规则是你要不断的比较和被比较,在比较和...
    阳光心灵成长工作室阅读 273评论 0 0
  • mongodb需要先启动一个服务器进程(mongod命令),然后再启动客户端进程(mongo命令)。安装完成之后如...
    fooke阅读 582评论 0 0
  • 一扇窗,一杯茶,一本笔记,外加一缕灿烂的光,这就是我理想最喜欢的样子,看起来犹如田园诗意般的生活。...
    生生y灯火阅读 430评论 2 1