src/views/business/inspectionReview/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/views/business/inspectionReview/index.vue
@@ -343,14 +343,14 @@ }, }) }, // 上传报告 handleUpload(row) { }, // 下载报告 download(row) { let url = this.javaApi + '/word/' + (row.urlS === null || row.urlS === '') ? row.url : row.urlS this.$download.saveAs(url, row.fileName); let url = (row.urlS===null||row.urlS==='')?row.url:row.urlS const link = document.createElement('a'); link.href = this.javaApi + url; link.target = '_blank'; document.body.appendChild(link); link.click(); }, // 还原操作 handleRestore(row) {