vue 导出el-table选择的数据使用笔记

1、安装

cnpm i vue-json-excel --save

2、使用

1、引入

import JsonExcel from 'vue-json-excel'

2、注册

components: {downloadExcel:JsonExcel,},

3、页面使用

data:{return {excelName:`每日火化量统计${new Date().valueOf()}.xls`,json_fields:{"类型":'类型',"合计":'合计',},}
}
<el-form-item><download-excelclass = "export-excel-wrapper"v-if="multipleSelection.length > 0":data="multipleSelection":fields="json_fields":name ='excelName'><el-button type="primary" >导出Excel</el-button></download-excel><el-button v-else type="primary"   @click="openExecl">导出Excel</el-button></el-form-item>

3、页面代码

<template><div class="dailyCremationVolume  h100" v-loading="loading"><div class="PageContent"><el-form :model="ruleForm" :inline="true" label-width="80px" class="PageItem PageItems margintop20"><el-row :gutter="5" ref="fileSearch" class="fileSearch"><el-form-item label="结算日期:"><el-date-picker type="date" placeholder="选择日期" v-model="ruleForm.staTime"format="yyyy-MM-dd" ></el-date-picker>-<el-date-picker type="date" placeholder="选择日期" v-model="ruleForm.endTime"format="yyyy-MM-dd" ></el-date-picker></el-form-item><el-form-item><el-button type="primary"  @click="onSubmit('search')">查询</el-button></el-form-item><el-form-item><download-excelclass = "export-excel-wrapper"v-if="multipleSelection.length > 0":data="multipleSelection":fields="json_fields":name ='excelName'><el-button type="primary" >导出Excel</el-button></download-excel><el-button v-else type="primary"   @click="openExecl">导出Excel</el-button></el-form-item></el-row><el-tableref="filetable"id="res_table":data="tableData":header-cell-style="{background:'rgb(246,247,251)',color:'#606266'}"stripe:height="tableHeight"@selection-change="handleSelectionChange"border><el-table-columntype="selection"v-if="tableData.length > 0"width="55"></el-table-column><el-table-column:prop="item"align='center':label="item":key="item"v-for="item in columns"></el-table-column></el-table></el-form></div></div>
</template><script>import * as Type from '@/api/service'import {dataFormatetmd} from '@/utils/index'import FileSaver from "file-saver";import XLSX from "xlsx";import download from "@/api/download"import JsonExcel from 'vue-json-excel'export default {name: "dailyCremationVolume",components: {downloadExcel:JsonExcel,},data() {return {excelName:`每日火化量统计${new Date().valueOf()}.xls`,json_fields:{"类型":'类型',"合计":'合计',},loading: false,dictionary:{},multipleSelection: [],tableHeight: 0,type: [],ruleForm: {staTime:new Date(),endTime:new Date(),},pager: {pageSize: 20,total: 1,currentPage: 1},tableData: [],keys:[],columns:[]//按钮权限}},created () {},//载入按钮mounted() {this.$store.dispatch("user/getdictionary").then((res) => {this.dictionary=res})this.btnRight = this.$route.meta.buttons;//遍历属性赋值将true与false字符串转换成布尔型的值for (let key of Object.keys(this.btnRight)) {this.btnRight[key] = (this.btnRight[key] || this.btnRight[key] == "true") ? true : false;}this.onSubmit()var that = thiswindow.onresize = function () {var search = document.getElementsByClassName("fileSearch")[0].offsetHeightvar dom = document.getElementsByClassName("PageContent")[0].offsetHeightthat.tableHeight = dom - search - 60}},//注销window.onresize事件destroyed() {window.onresize = null;},updated() {this.$nextTick(() => {var dom = document.getElementsByClassName("PageContent")[0].offsetHeightvar search = document.getElementsByClassName("fileSearch")[0].offsetHeightthis.tableHeight = dom - search - 80})},methods: {handleSelectionChange(val) {this.multipleSelection = val;},async onSubmit() {this.loading = truethis.json_fields={"类型":'类型',"合计":'合计',}var postData = {staTime:this.ruleForm.staTime?this.$dayjs(new Date(this.ruleForm.staTime)).format('YYYY-MM-DD'):'',endTime:this.ruleForm.endTime?this.$dayjs(new Date(this.ruleForm.endTime)).format('YYYY-MM-DD'):'',}//查询火化档案的接口let res = await Type['loadDailyStatisticsData'](postData)this.loading=false;if(res.code!==1) return this.$message.error(res.message)if(res.data){this.tableData = res.data.val;this.columns = res.data.keys;res.data.keys.forEach((item,index)=>{console.log(item,'0')this.json_fields[item] = res.data.keys[index]})}else{this.tableData=[]}},//加法plus(){let r1, r2, mtry{r1 = arguments[0].toString().split(".")[1].length}catch(e){r1 = 0}try{r2 = arguments[1].toString().split(".")[1].length}catch(e){r2 = 0}m = Math.pow(10,Math.max(r1,r2))if(arguments.length > 2) {return this.plus((arguments[0] * m + arguments[1] * m) / m, ...(Array.from(arguments).slice(2)))}else{return ((arguments[0] * m + arguments[1] * m) / m).toFixed(2)}},transformData(data) {const keys = Object.keys(data);const values = Object.values(data);console.log(values,'7411')this.keys=values[0].lengthconst result = [];for (let i = 0; i < values.length; i++) {const obj = {};obj[0] = keys[i];let totalCost = 0;for (let j = 0; j < values[i].length; j++) {obj[j + 1] = values[i][j];totalCost += parseInt(values[i][j]);}obj[values[i].length + 1] = totalCost;result.push(obj);}return result;},// 初始页currentPage、初始每页数据数pagesize和数据datahandleSizeChange: function (size) {this.pager.pageSize = size;this.onSubmit()},handleCurrentChange: function (currentPage) {this.pager.currentPage = currentPage;this.onSubmit()},openExecl() {// var postData = {//   itemName:this.ruleForm.itemName,//   staTime: dataFormatetmd(new Date(this.ruleForm.staTime)),//   endTime: dataFormatetmd(new Date(this.ruleForm.endTime)),// }// // download.exportExcel("http://localhost:8001/fmis/test/export-excel-file",{title:"title","rowNum":23},"逝者火化档案_"+download.getDateTime()+".xls");// download.exportExcel(Type['loadCommodityDataExport'], postData, "小商品日销售统计_" + download.getDateTime() + ".xlsx");if(this.multipleSelection.length==0&&this.tableData.length>0){let xlsxParam = { raw: true };let name ='每日火化量统计'let  wb={}if(this.tableData.length==0){return this.$message('暂无数据可导出')}wb= XLSX.utils.table_to_book(document.querySelector("#res_table"),xlsxParam);/* 从表生成工作簿对象 *//* 获取二进制字符串作为输出 */var 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" }),//设置导出文件名称`${name}${(new Date()).valueOf()}.xlsx`);} catch (e) {if (typeof console !== "undefined") console.log(e, wbout);}return wbout;}else {}},//打开逝者档案},}
</script>
<style>.dailyCremationVolume .PageContent .PageItems .el-input, .dailyCremationVolume .PageContent .PageItems .el-select {width: 8vw;min-width: 100px;}/* .dailyCremationVolume .el-dialog__header {background-color: cornflowerblue !important;} */.dailyCremationVolume .el-dialog__title, .dailyCremationVolume .el-dialog__headerbtn .el-dialog__close {color: white;}.dailyCremationVolume .el-dialog {min-width: 300px !important;}.dailyCremationVolume .PageItems .el-input, .dailyCremationVolume .PageItems .el-select {width: 8vw;min-width: 100px;}.dailyCremationVolume .detail .el-form-item {margin-bottom: 5px;}
</style>
<style scoped>
/*::v-deep 这里主要的作用就是用来强制修改element默认的样式*/
::v-deep .el-table thead.is-group th {background: none;padding: 0px;
}::v-deep .el-table thead.is-group tr:first-of-type th:first-of-type {border-bottom: none; /*中间的横线去掉*/
}::v-deep .el-table thead.is-group tr:first-of-type th:first-of-type div.cell {text-align: right; /*上边文字靠右*/
}::v-deep .el-table thead.is-group tr:last-of-type th:first-of-type div.cell {text-align: left; /*下边文字靠左*/
}
/*核心代码*/
::v-deep .el-table thead.is-group tr:first-of-type th:first-of-type:before {content: "";position: absolute;width: 1px;height: 100px; /*斜线的长度*/top: 0;left: 0;background-color: grey;opacity: 0.2;display: block;/* transform: rotate(-43deg); *//* transform: rotate(-70deg); */transform: rotate(-50deg);-webkit-transform-origin: top;transform-origin: top;
}::v-deep .el-table thead.is-group tr:last-of-type th:first-of-type:before {content: "";position: absolute;width: 1px;height: 100px; /*斜线的长度*/bottom: 0;right: 0;background-color: grey;opacity: 0.2;display: block;/* transform: rotate(-45deg); */transform: rotate(-50deg);-webkit-transform-origin: bottom;transform-origin: bottom;
}
::v-deep .el-table thead.is-group th {height: 27.4px;
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/216235.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Node.js 事件循环简单介绍

1.简介 Node.js 事件循环是 Node.js 运行时环境中的一个核心机制&#xff0c;用于管理异步操作和回调函数的执行顺序。它基于事件驱动模型&#xff0c;通过事件循环来处理和派发事件&#xff0c;以及执行相应的回调函数。 Node.js 是单进程单线程应用程序&#xff0c;但是因为…

Windows编译动态库没有生成.lib文件问题

最近修改了一个项目&#xff0c;以前生成静态库&#xff0c;后改为生成动态库&#xff0c;在Linux上没有问题&#xff0c;但在Windows上只生成了.dll文件&#xff0c;没有生成.lib文件。 在Windows中&#xff0c;.lib文件除了可以用作静态链接库外&#xff0c;还有另一种用途&…

QT QIFW Windows下制作安装包(一)

一、概述 1、QIFW是一款基于QT框架开发的跨平台安装框架。QIFW是QT Installer FrameWork的缩写&#xff0c;支持Windows、Linux和macos等多种平台。QIFW可以帮助开发者创建自己的安装程序&#xff0c;将它们打包到通用的安装包中&#xff0c;并提供可视化的界面进行安装。 2…

Django分页器

1 Django的分页器&#xff08;paginator&#xff09;简介 在页面显示分页数据&#xff0c;需要用到Django分页器组件 from django.core.paginator import Paginator Paginator对象&#xff1a; paginator Paginator(user_list, 10) # per_page: 每页显示条目数量 # coun…

mysql:用SHOW CREATE TABLE tbl_name查看创建表的SQL语句

https://dev.mysql.com/doc/refman/8.2/en/show-create-table.html 可以用SHOW CREATE TABLE tbl_name查看创建表的SQL语句。 例如&#xff0c;SHOW CREATE TABLE test_table;表示查询创建test_table表的SQL语句&#xff1a;

刘元昌:期待更多年轻人的第一杯精酿是失眠企鹅

12月7日下午&#xff0c;2023&#xff08;第十八届&#xff09;大河财富中国论坛盛大开启。作为先行论坛&#xff0c;2023新消费峰会火热开场。此次峰会以“提质新消费 释放新活力”为主题&#xff0c;集论坛、演绎、展示、互动为一体&#xff0c;把峰会变身“秀场”&#xff0…

基于Java住院部病人信息管理系统

基于Java住院部病人信息管理系统 功能需求 1、病人信息管理&#xff1a;系统需要提供病人信息管理功能&#xff0c;包括病人的基本信息&#xff08;如姓名、性别、年龄、联系方式等&#xff09;和医疗信息&#xff08;如病史、病情、诊断结果等&#xff09;。 2、病房管理&a…

腾讯-轻量应用服务器centos7中宝塔安装MySQL8.0出现内存不足

目录 前言 出现的问题: 解决方法&#xff1a; 编译安装&#xff1a; 极速安装 其他 我的其他博客 前言 说实话&#xff0c;本人也就是个穷学生买不起啥大的服务器啥的&#xff0c;整了个2核 2内存的服务器 用宝塔按mysql5.5是没问题的&#xff0c;一切换8.0就提醒内存不足…

可信人工智能

定义 可信AI&#xff0c;就是确保AI的公平性、可解释性、健壮性和透明性&#xff0c;确保算法可被人信任。 存在的问题 算法不鲁棒导致的应用风险 自动驾驶汽车未能及时识别行人导致的交通事故黑箱模型导致算法难以解释&#xff0c;对用户不透明 难以推广至医疗、金融等需要…

UE5 - ArchvizExplorer与Map Border Collection结合 - 实现电子围栏效果

插件地址&#xff1a; https://www.unrealengine.com/marketplace/zh-CN/product/archviz-explorer https://www.unrealengine.com/marketplace/zh-CN/product/map-border-collection ArchvizExplorer扩展&#xff1a; https://download.csdn.net/download/qq_17523181/8843305…

freemarker+Aspose.word实现模板生成word并转成pdf

需求&#xff1a;动态生成pdf指定模板 实现途径&#xff1a;通过freemarker模板&#xff0c;导出word文档&#xff0c;同时可将word转为pdf。 技术选择思路 思路一&#xff1a;直接导出pdf 使用itext模板导出pdf 适用范围 业务生成的 pdf 是具有固定格式或者模板的文字及其…

数据采集网关:工业数据采集上云

数据采集网关&#xff0c;以其高效、便捷的特点&#xff0c;成为了现代工业物联网数据采集处理的重要工具。它是连接不同数据源和数据接收设备的桥梁&#xff0c;将各种形式和格式的数据快速、安全地汇聚到一起。通过数据采集网关&#xff0c;企业可以轻松实现数据的整合、转换…

函数创建与使用

函数使用的原因 函数是设计出来是为了完成某项功能的代码块。只要调用就能执行。实现代码复用。代码复用是不是复制&#xff0c;而是同样的代码不用写很多。只要用调用的代码来写&#xff0c;就能完成。将功能代码放到某个地方。函数的设计就是为了代码复用。 声明函数和调用…

《人性的弱点》读后感

《人性的弱点》这本书的每个章节都引人深思&#xff0c;让我对人性有了更深入的理解。以下是我对每个章节的读后感&#xff1a; 第一章&#xff1a;自我意识 这一章讲述了人性中最基本的一面&#xff0c;即自我意识。每个人都渴望被重视&#xff0c;希望得到他人的认可和赞赏…

【算法题】字符统计及重排(js)

解法&#xff1a; const str "xyxyXX"; const str1 "abababb"; function solution(str) {const strArr str.split("").sort((a, b) > a - b);const map new Map();for (let i 0; i < strArr.length; i) {if (map.has(strArr[i])) {m…

Chrome 将禁止修改 document.domain

参考链接1&#xff1a;https://developer.chrome.com/blog/immutable-document-domain?hlzh-cn 参考链接2&#xff1a;https://juejin.cn/post/7238980109453525050 为什么设置document.domain,跨域依旧报错&#xff1f;

推荐系统,推荐模型中负样本的选择和采集

推荐系统中&#xff0c;负样本的采集通常是一个挑战&#xff0c;因为用户往往只提供他们喜欢的项目的反馈&#xff0c;而不喜欢的项目的反馈通常是缺失的。以下是一些常见的负样本采集策略&#xff1a;   1. 随机采样&#xff1a;这是最常见的策略&#xff0c;就是从用户未互…

摇头机,舞台灯,白色家电,3D打印,医疗器械等安防芯片步进驱动选型GC系列,低成本,大电流

GLOBALCHIP新一代的安防产品用的芯片&#xff0c;GC3901 GC3909 GC3910 GC3911 GC8548 GC8549 GC6609 GC6610 GC2003 GC2803 GC2804步进驱动 达林顿选型型号&#xff0c;采用12V H 桥驱动器。其中最大持续电流(A)可达2.5A。其中GC6610&#xff0c;GC6609 是36V&#xff0c;低成…

Linux查询内存或CPU占用最多的几个进程

一、可以使用以下命令查使用内存最多的10个进程 方法1&#xff1a; ps -aux | sort -k4nr | head -10 如果是最高的三个&#xff0c;10改为3即可 命令解释&#xff1a; 1. ps&#xff1a;参数a指代all——所有的进程&#xff0c;u指代userid——执行该进程的用户id&#xff…

QT学习(2):信号槽机制

目录 信号槽机制定义连接一、标准connect链接1、QObject::connect2、QMetaObjectPrivate::connect3、信号槽容器Conntion、ConnectionList、SignalVector、ConnectionData 二、函数指针链接(qt5后)三、Lamba表达式 触发 信号槽机制 信号槽是观察者模式的一种实现&#xff0c;订…