let res= await exportCompany({companyId:this.CurrenTable._id,typeId:this.typeId})
let buffer= new Uint8Array(res.data.buffer.data)
const link = document.createElement('a')
const blob = new Blob([buffer],{type:'application/vnd.ms-excel;charset=utf-8'})
link.href = URL.createObjectURL(blob)
link.setAttribute('download',this.CurrenTable.name)
document.body.appendChild(link)
link.click()
document.body.removeChild(link)** **
版权声明:本文为weixin_47754874原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。