<el-button
type="warning"
icon="el-icon-download"
size="small"
@click="onBatchExport"
>
导出
</el-button>
安装插件
npm install js-table2excel
导入插件
import table2excel from 'js-table2excel'
data(){
return {
listDatanew: []
}
}
// 导出事件 datas是接口返回的数据
onBatchExport() {
const column = [
{
title: '姓名',
key: 'name',
type: 'text'
},
{
title: '年龄',
key: 'age',
type: 'text'
},
{
title: '巡检时间',
key: 'XJDATE',
type: 'text'
},
{
title: '问题描述',
key: 'PROBLEM',
type: 'text'
},
{
title: '图片1',
key: 'IMG1',
type: 'image',
width: 50,
height: 50
},
{
title: '图片2',
key: 'IMG2',
type: 'image',
width: 50,
height: 50
},
]
let tableDatas = JSON.parse(JSON.stringify(this.listDatanew))
let datas = tableDatas;
table2excel(column, datas, '导出后的文件名')
},
vue table表格导出图片到Excel
ratel️2023-11-04 12:21
相关推荐
不羁的fang少年7 分钟前
前端常见问题(vue,css,html,js等)change_fate13 分钟前
el-menu折叠后文字下移weixin_411191842 小时前
flutter中WebView的使用及JavaScript桥接的问题记录百***06012 小时前
SpringMVC 请求参数接收刻BITTER2 小时前
用EXCEL 将单色屏幕的Bitmap 字模数据还原回图形匿者 衍2 小时前
POI读取 excel 嵌入式图片(支持wps 和 office)天外天-亮2 小时前
Vue + excel下载 + 水印用户47949283569153 小时前
Code Review 惊魂:同事的“优雅”重构,差点让管理员全部掉线虚伪的空想家4 小时前
arm架构服务器使用kvm创建虚机报错,romfile “efi-virtio.rom“ is empty0***K8924 小时前
Vue数据挖掘开发