src/views/business/reportPreparation/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/views/business/reportPreparation/index.vue
@@ -696,8 +696,12 @@ } }, download(row) { let url = this.javaApi+'/word/' + row.urlS ? row.urlS : row.url; this.$download.saveAs(url, row.fileName); let url = row.urlS ? row.urlS : row.url; const link = document.createElement('a'); link.href = this.javaApi + url; link.target = '_blank'; document.body.appendChild(link); link.click(); }, // 还原操作 handleRestore(row) {