廖井涛
2025-03-26 7a0527e207c59cdcce0b1f7a41bd7457a236ab23
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();
}