无人机管理后台前端(已迁走)
罗广辉
2025-08-08 46cdda27d21f30b4e87018e76e438d11c75c7108
src/utils/util.js
@@ -477,4 +477,16 @@
    }
  }
  return newObj
}
}
// a链接直接下载
export const aLinkDownloadUtil = (url, name) => {
  let a = document.createElement('a')
  a.style.display = 'none'
  a.href = url
  a.download = name
  document.body.appendChild(a)
  a.click()
  document.body.removeChild(a)
  a = null
}