流 下载模板

    // 模板下载
      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对象
      },

 

posted @ 2022-05-20 17:47  老龟  阅读(29)  评论(0)    收藏  举报