1、文件下载 针对特殊流文件下载
/*** 文件下载 针对特殊流文件下载* @param {*下载链接} data*/export const downloadFileIf = data => {var iframe = document.createElement('iframe')iframe.src = dataiframe.style.display = 'none'document.body.appendChild(iframe)setTimeout(() => {$('iframe').remove()}, 1000)}
