Vue框架下實現導入導出Excel、導出PDF


項目需求:開發一套基於Vue框架的工程檔案管理系統,用於工程項目資料的填寫、編輯和歸檔,經調研需支持如下功能:

  • Excel報表的導入、導出
  • PDF文件的導出
  • 打印表格

 

經過技術選型,項目組一致決定通過表格組件SpreadJS 來實現。以下是實現Excel報表的導入導出、PDF導出、打印表格的一些思路,供大家參考:

環境介紹

1.后台:Spring Boot 2.x

2.前台:vue、vue-element、webpack、iview、Vuex.js 2.x

3.組件:SpreadJS V11

SpreadJS 組件下載地址:https://www.grapecity.com.cn/download/?pid=57

初始化Vue項目

這里,可以參考這篇技術博客: 3分鍾創建 SpreadJS 的 Vue 項目

項目運行效果:

如下是本地的一個Excel文件:

 

 

 



通過SpreadJS,導入到項目中的效果:

 

 

 



我的項目中應用了SpreadJS V12.2.5的版本(目前官網SpreadJS的最新版本是V13),其中package.json 需要添加的引用如下:

"dependencies": {
    "@grapecity/spread-excelio": "12.2.5",
    "@grapecity/spread-sheets": "12.2.5",
    "@grapecity/spread-sheets-pdf": "^12.2.5",
    "@grapecity/spread-sheets-print": "12.2.5",
    "@grapecity/spread-sheets-resources-zh": "12.2.5",
    "@grapecity/spread-sheets-vue": "12.2.5",
    "@grapecity/spread-sheets-charts": "12.2.5" ,
    "file-saver": "2.0.2",
    "jquery": "2.2.1",
    "vue": "^2.5.2",
    "vue-router": "^3.0.1"
   },

  

 

執行npm install 命令安裝SpreadJS 組件

可以參考這篇技術博客:https://www.grapecity.com.cn/blogs/spread-sheets-v11sp1-support-npm

 

導入導出Excel報表

  1. 安裝相關的資源包: "@grapecity/spread-excelio"、  "file-saver"
  2. 在頁面中引入: import ExcelIO from '@grapecity/spread-excelio'、import FaverSaver from 'file-saver'
  3. 如下代碼可實現導入導出Excel:
exportXlsx () {
      let ex = new ExcelIO.IO()
      let json = this.spread.toJSON()
      ex.save(json, function (blob) {
        FaverSaver.saveAs(blob, 'export.xlsx')
      }, function (e) {
        console.log(e)
      })
    },
     importXlsx(){
        let self = this;
         var excelIO = new ExcelIO.IO();
         console.log(excelIO);
         const excelFile = document.getElementById("fileDemo").files[0];
       excelIO.open(excelFile, function (json) {
           let workbookObj = json;
           self.spread.fromJSON(workbookObj);
         }, function (e) {
             alert(e.errorMessage);
        });
     }

  

導出PDF的注意事項

  1. 安裝相同版本的 PDF包: "@grapecity/spread-sheets-pdf"
  2. 在需要打印的頁面引入該包: import  "@grapecity/spread-sheets-pdf";
  3. 引入該包需要注意引入順序,先引入 @grapecity/spread-sheets和 grapecity/spread-sheets-print
  4. 需引入第三方插件file-saver : import FaverSaver from 'file-saver'
  5. 如下幾行代碼可實現導出PDF功能
   savePdf(){
         let self = this;
        let jsonString = JSON.stringify(self.spread.toJSON());
        let printSpread = new GC.Spread.Sheets.Workbook();
        printSpread.fromJSON(JSON.parse(jsonString));
        printSpread.savePDF(function(blob) {   
                // window.open(URL.createObjectURL(blob))        
                FaverSaver.saveAs(blob,  'Hello.pdf')
                }, function(error) {
                 console.log(error);
                }, {
                title: 'Print',
            });  
     }

  

示例代碼下載

大家可下載下方的示例代碼,實現導出PDF、導入導出Excel功能。 


SpreadJSVue.zip


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2024 CODEPRJ.COM