vue Execel//模板下载

Posted wssdx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue Execel//模板下载相关的知识,希望对你有一定的参考价值。

<a href="#" @click="templateDownload()">模板下载</a>
 
//模板下载
templateDownload()
this.$axios(
url: ‘/chenfan_refuse/otherRecord/otherRecordExcelDownload‘,
method: ‘get‘,
responseType: ‘blob‘
).then((data) =>
const blob = new Blob([data], type: ‘text/plain;charset=utf-8‘ )
const url = window.URL.createObjectURL(blob)
const a = document.createElement(‘a‘)
a.href = url
a.download = ‘其它入库单新建.xlsx‘
document.body.appendChild(a)
a.click()
window.URL.revokeObjectURL(url)
document.body.removeChild(a)
this.$Loading.finish();//结束进度条
)
,

以上是关于vue Execel//模板下载的主要内容,如果未能解决你的问题,请参考以下文章

JasperReport使用

Execel(导出新方法):

office(word,execel,ppt)转换为图片输出

Qt在windows 平台操作保存execel的表格(通过QAxObject来操作)

vue下载文件时,限制下载个数的提示语

vue下载本地文件vue下载本地文件报错vue下载本地文件找不到