js通过后端接口下载xls文件
download(e) { // 下载文件
const link = document.createElement('a')
link.style.display = 'none'
link.href = `${window.config.baseUrl}FileService/File/Download?filePath=${e.path}&fileName=${e.fileName}`
document.body.appendChild(link)
link.click()
},

浙公网安备 33010602011771号