From f9406c90ac2284622121c20f9c76d976ef3c8705 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 16 Apr 2024 10:33:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../overduereconciliationfinancingInfo.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anrui-riskcenter-ui/src/views/overduereconciliationfinancing/overduereconciliationfinancingInfo.vue b/anrui-riskcenter-ui/src/views/overduereconciliationfinancing/overduereconciliationfinancingInfo.vue index 5bad857cb5..c4fdf6ea39 100644 --- a/anrui-riskcenter-ui/src/views/overduereconciliationfinancing/overduereconciliationfinancingInfo.vue +++ b/anrui-riskcenter-ui/src/views/overduereconciliationfinancing/overduereconciliationfinancingInfo.vue @@ -115,13 +115,13 @@ export default { req.overdueCreatePdf({ sid: this.formobj.sid }).then((res) => { if (res.success) { var xhr = new XMLHttpRequest() - xhr.open('GET', process.env.VUE_APP_BASE_API + '/base/file/download?filePath=' + res.data + '&outFileName=' + '代收代付', true) + xhr.open('GET', process.env.VUE_APP_BASE_API + '/base/file/download?filePath=' + res.data + '&outFileName=' + '逾期对账', true) xhr.setRequestHeader('token', getStorage()) xhr.responseType = 'blob' xhr.onload = function(e) { // 如果请求执行成功 var blob = this.response - var filename = '代收代付.pdf' + var filename = '逾期对账.pdf' var a = document.createElement('a') // blob.type="application/octet-stream"; // 创键临时url对象