Open Riunshow opened 5 years ago
// 多文件下载方法, 通过 iframe 实现 downloadFile (x) { const iframe = document.createElement('iframe') iframe.style.display = 'none' iframe.style.height = 0 iframe.src = window.API_DOWNLOAD + x document.body.appendChild(iframe) setTimeout(() => { iframe.remove() }, 5 * 60 * 1000) }