廖井涛
2025-02-17 9050274d1c1cdfd3a2f45984fdacf44fd4a9fb2a
north-glass-erp/northglass-erp/src/hook/downLoadFile.js
New file
@@ -0,0 +1,7 @@
export default function downloadFile(url,fileName){
       // 文件的URL地址
    const link = document.createElement('a');
    link.href = url;
    link.setAttribute('download', fileName);
    link.click();
}