feat: 심사자 심의 진행

main
minuk926 3 years ago
parent bc337d63d8
commit d857215587

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

Loading…
Cancel
Save