This commit is contained in:
focp212@naver.com
2025-11-07 14:04:21 +09:00
parent 45cee4b53e
commit e5342f1d0a
35 changed files with 330 additions and 94 deletions

View File

@@ -127,6 +127,11 @@ export const KeyInPaymentPage = () => {
&& rs.nextCursor !== pageParam.cursor
&& rs.content.length === DEFAULT_PAGE_PARAM.size
);
}).catch((e: any) => {
if(e.response?.data?.error?.message){
showAlert(e.response?.data?.error?.message);
return;
}
});
}
@@ -155,6 +160,11 @@ export const KeyInPaymentPage = () => {
email: selectedEmail
}).then((rs) => {
console.log('Excel Download Status:', rs.status);
}).catch((e: any) => {
if(e.response?.data?.error?.message){
showAlert(e.response?.data?.error?.message);
return;
}
});
}
setEmailBottomSheetOn(false);