ElementUI在el-table基础上进行导出.xls表格操作
1.截图
2.导出按钮
3.导出方法
this.downloadFile为全局挂载的方法
/** 导出按钮操作 */
handleExport() {
// 导出接口
exportHealthSubsidy(this.ids)
.then((res) => {
this.downloadFile(res, "文件导出.xls");
})
},
对应接口
4.el-table复选框操作
组件自带方法@selection-change
共有 0 条评论