浏览代码

数据导出

shilin 4 年之前
父节点
当前提交
7882bbec7b
共有 3 个文件被更改,包括 59 次插入1 次删除
  1. 1 0
      package.json
  2. 14 1
      src/components/gradeEvaluation/GradeEvaluation.vue
  3. 44 0
      src/utils/excelHelper.js

+ 1 - 0
package.json

@@ -11,6 +11,7 @@
     "core-js": "^3.6.5",
     "echarts": "^5.0.0",
     "element-ui": "^2.4.5",
+    "file-saver": "^2.0.5",
     "stompjs": "^2.3.3",
     "vue": "^2.6.11",
     "vue-json-excel": "^0.3.0",

+ 14 - 1
src/components/gradeEvaluation/GradeEvaluation.vue

@@ -19,6 +19,9 @@
 						<div style="width: 2%; float:left;margin-left: 10%;">
 							<el-button type="primary" @click="dialogTableVisibleOpen()">对比</el-button>
 						</div>
+							<div style="width: 2%; float:left;margin-left: 10%;">
+							<el-button type="primary" @click="exportData()">导出</el-button>
+						</div>
 						<el-dialog class="el-dialog_body" width="65%" title="日信息对比" :visible.sync="dialogTableVisible" append-to-body>
 							<div class="margin">
 								<div class="dialogLeftData">
@@ -217,7 +220,7 @@
 				</el-tabs>
 
 			<el-main v-if="dailyInformation == true">
-				<el-table :data="gridData" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
+				<el-table id="test1" :data="gridData" height="595" @selection-change="handleSelectionChange" :header-cell-style="headStyle"
 				 :cell-style="{ textAlign: 'center' }" style="font-size: 10px;">
 					<el-table-column label="等级评定日信息查看">
 						<el-table-column type="selection" width="55">
@@ -382,7 +385,12 @@
 	</div>
 </template>
 
+
 <script>
+
+
+import excelHelper from "@/utils/excelHelper";
+
 	export default {
 		data() {
 			return {
@@ -499,6 +507,11 @@
 				this.gamonthlistByPage();
 				this.gayearlistByPage();
 			},
+			exportData() {
+
+			excelHelper.exportExcel("test1","fileName",".xls",true);
+
+			},
 			dialogTableVisibleOpen() {
 				this.dialogTableVisible = true;
 				this.radatChartWindturbineid1 = this.multipleSelection[0].windturbineid;

+ 44 - 0
src/utils/excelHelper.js

@@ -0,0 +1,44 @@
+import Vue from 'vue'
+import FileSaver from "file-saver";
+import XLSX from "xlsx";
+ 
+export default {
+    /**
+     * @param tableId 要导出的表格ID
+     * @param fileName 文件导出名称
+     * @param fileType 文件类型
+     * @param rawFlag - true 导出的内容只做解析,不进行格式转换
+     * @returns {*}
+     */
+    exportExcel(tableId,fileName,fileType,rawFlag) {
+        let fix = document.querySelector('.el-table__fixed');
+        let wb;
+        /* 判断要导出的节点中是否有fixed的表格,如果有,转换excel时先将该dom移除,然后append回去 */
+        if(fix){
+            wb = XLSX.utils.table_to_book(document.querySelector("#"+tableId).removeChild(fix),{raw:rawFlag});
+            document.querySelector("#"+tableId).appendChild(fix);
+        }else{
+            wb = XLSX.utils.table_to_book(document.querySelector("#"+tableId),{raw:rawFlag});
+        }
+        /* 获取二进制字符串作为输出 */
+        let wbout = XLSX.write(wb, {
+            bookType: "xlsx",
+            bookSST: true,
+            type: "array"
+        });
+        try {
+            FileSaver.saveAs(
+                //Blob 对象表示一个不可变、原始数据的类文件对象。
+                //Blob 表示的不一定是JavaScript原生格式的数据。
+                //File 接口基于Blob,继承了 blob 的功能并将其扩展使其支持用户系统上的文件。
+                //返回一个新创建的 Blob 对象,其内容由参数中给定的数组串联组成。
+                new Blob([wbout], { type: "application/octet-stream" }),
+                //设置导出文件名称
+                fileName + fileType
+            );
+        } catch (e) {
+            if (typeof console !== "undefined") console.log(e, wbout);
+        }
+        return wbout;
+    }
+}