|
|
|
@ -106,7 +106,7 @@
|
|
|
|
|
const blob = new Blob([data]) // 把得到的结果用流对象转一下 |
|
|
|
|
var a = document.createElement('a') //创建一个<a></a>标签 |
|
|
|
|
a.href = URL.createObjectURL(blob) // 将流文件写入a标签的href属性值 |
|
|
|
|
a.download = '采购通知书.docx' //设置文件名 |
|
|
|
|
a.download = '委托采购物资入库验收报告.docx' //设置文件名 |
|
|
|
|
a.style.display = 'none' // 障眼法藏起来a标签 |
|
|
|
|
document.body.appendChild(a) // 将a标签追加到文档对象中 |
|
|
|
|
a.click() // 模拟点击了a标签,会触发a标签的href的读取,浏览器就会自动下载了 |
|
|
|
|