download() {
const a = document.createElement('a')
const url = 'http://39.105.206.34/file/statics/template/%E7%94%A8%E6%88%B7%E6%A8%A1%E6%9D%BF.xlsx' // 完整的url则直接使用
// 这里是将url转成blob地址,
fetch(url).then(res => res.blob()).then(blob => { // 将链接地址字符内容转变成blob地址
a.href = URL.createObjectURL(blob)
console.log(a.href)
a.download = '用户模板' // 下载文件的名字
document.body.appendChild(a)
a.click()
})
}
function doDownload(ids){
downloadAbility(ids).then(res=>{
res.data.map(function (v,i){
let elemIF = document.createElement('iframe');
elemIF.src = v.url;
elemIF.style.display = 'none';
document.body.appendChild(elemIF);
setTimeout(() => {
elemIF.remove();
}, 1000);
})
});
}