1、文件下载 针对特殊流文件下载

    1. /**
    2. * 文件下载 针对特殊流文件下载
    3. * @param {*下载链接} data
    4. */
    5. export const downloadFileIf = data => {
    6. var iframe = document.createElement('iframe')
    7. iframe.src = data
    8. iframe.style.display = 'none'
    9. document.body.appendChild(iframe)
    10. setTimeout(() => {
    11. $('iframe').remove()
    12. }, 1000)
    13. }