// 直接打开新页面了
<span @click="exportFileByUrl(i.url,i.name)">下载</span>
const exportFileByUrl = (url, name) => {
const a = document.createElement('a')
a.style.display = 'none'
a.href = url
name && a.setAttribute('download', name)
document.body.appendChild(a)
a.click()
a.remove()
}
a标签实现文件下载的限制