|
|
@ -134,7 +134,10 @@ export async function judgeFileDownload(params, alert) {
|
|
|
|
if (res?.isAxiosError || res?.status === 404) {
|
|
|
|
if (res?.isAxiosError || res?.status === 404) {
|
|
|
|
alert.show('파일을 다운로드 할 수 없습니다 [파일정보 오류]');
|
|
|
|
alert.show('파일을 다운로드 할 수 없습니다 [파일정보 오류]');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
if (res?.size <= 0) alert.show('File not found!');
|
|
|
|
if (res?.size <= 0) {
|
|
|
|
|
|
|
|
alert.show('File not found!');
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
// const onChangeFile = (e) => {
|
|
|
|
// const onChangeFile = (e) => {
|
|
|
|
// const file = e.target.files[0];
|
|
|
|
// const file = e.target.files[0];
|
|
|
|
// if (file.type.includes('image')) {
|
|
|
|
// if (file.type.includes('image')) {
|
|
|
|