- SMS,KeyIn,ARS 페이지 스크롤 적용

- ARS 결제신청 :성공 결과 팝업 추가
This commit is contained in:
HyeonJongKim
2025-10-20 16:03:13 +09:00
parent 5d2af3fb06
commit 948657db3f
20 changed files with 570 additions and 296 deletions

View File

@@ -15,4 +15,16 @@ export const ArsOrderStatusBtnGroup = [
export const ArsPaymentMethodBtnGroup = [
{name: 'SMS', value: ArsPaymentMethod.SMS },
{name: 'ARS', value: ArsPaymentMethod.ARS },
];
];
export const getArsPaymentStatusName = (status?: string): string => {
if (!status) return '';
const found = ArsPaymentStatusBtnGroup.find(item => item.value === status);
return found ? found.name : status;
}
export const getArsOrderStatusName = (status?: string): string => {
if (!status) return '';
const found = ArsOrderStatusBtnGroup.find(item => item.value === status);
return found ? found.name : status;
}