流 下载模板
// 模板下载 async DownloadTemplate() { const data = await this.$api.getAssociatePriceChangeTemplate() const blob = new Blob([data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', }) const a = document.createElement('a') let href = window.URL.createObjectURL(blob) a.href = href a.download = '导入模板' //指定下载文件名 document.body.appendChild(a) a.click() document.body.removeChild(a) // 下载完成移除元素 window.URL.revokeObjectURL(href) // 释放掉blob对象 },
浙公网安备 33010602011771号