码迷,mamicode.com
首页 > 其他好文 > 详细

vue Execel//模板下载

时间:2019-09-05 18:56:53      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:exe   temp   charset   text   const   url   nbsp   ldo   rev   

<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//模板下载

标签:exe   temp   charset   text   const   url   nbsp   ldo   rev   

原文地址:https://www.cnblogs.com/wssdx/p/11468660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!