修改文件下载路径

This commit is contained in:
许允枞 2024-11-19 10:22:28 +08:00
parent 1f23d682de
commit 485565f112

View File

@ -249,10 +249,10 @@
downloadFile(item) { downloadFile(item) {
// <a> // <a>
// const link = document.createElement('a'); // 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("."); // var lastIndexOf = item.filePath.lastIndexOf(".");
// link.download = item.fileName+item.filePath.substr(lastIndexOf); // // link.download = item.fileName+item.filePath.substr(lastIndexOf); //
window.open(item.filePath); window.open(href);
// // // //
// link.click(); // link.click();
}, },