/**
* File Download
* 文件下載,支持(.xlsx,.csv)格式文件下载;
*
*/
// 数据流文件下載
export function dataFlowDownload(fileFlow,fileName,fileType){
if(!fileFlow && !fileName && !fileType)return ; //文件流,文件名称,文件类型不存在时直接return;
let elink = document.createElement('a');
elink.download = fileName+fileType;
elink.style.display = 'none';
let blob = fileType.includes('xlsx') ? new Blob([fileFlow], { type: 'application/x-msdownload' }):new Blob(["\uFEFF"+fileFlow],{type: 'text/plain'});
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
document.body.removeChild(elink);
}`
dsdj