
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
import downloadService from "@/resources/js/downloadService";
// 파일 다운로드
export const fileDownloadProc = (file) => {
return downloadService.downloadFile(file, { responseType: 'blob' });
}
// 엑셀 다운로드
export const excelDownloadProc = (searchReqDTO , fileName) => {
return downloadService.downloadExcel(searchReqDTO, fileName, { responseType: 'blob' });
}
// 다중 파일 다운로드
export const multiFileDownloadProc = (files) => {
return downloadService.downloadMultipleFiles(files, { responseType: 'blob' });
}