diff --git a/src/views/partner/file/file.vue b/src/views/partner/file/file.vue index 71bd6c5..4d879fc 100644 --- a/src/views/partner/file/file.vue +++ b/src/views/partner/file/file.vue @@ -249,10 +249,10 @@ downloadFile(item) { // 创建一个 元素 // const link = document.createElement('a'); - // link.href = "https://www.nuoyunr.com/cdJdc"+item.filePath; // 文件路径 + let href = "https://www.nuoyunr.com/minio"+item.filePath; // 文件路径 // var lastIndexOf = item.filePath.lastIndexOf("."); // link.download = item.fileName+item.filePath.substr(lastIndexOf); // 下载的文件名 - window.open(item.filePath); + window.open(href); // // 触发下载 // link.click(); },