부가서비스

- SMS 결제통보 엑셀 다운로드 API 추가, 재발송 버튼 클릭시 Bottom Sheet 출현
This commit is contained in:
HyeonJongKim
2025-09-24 17:32:25 +09:00
parent 69bafcd2c5
commit 65a519f957
9 changed files with 193 additions and 20 deletions

View File

@@ -27,7 +27,8 @@ export const ListItem = ({
alimCl, sendType, sendCl,
paymentMethod, receiverName,
smsCl
smsCl,
onResendClick
}: ListItemProps) => {
const { navigate } = useNavigate();
const getItemClass = () => {
@@ -518,11 +519,12 @@ export const ListItem = ({
>{sendCl}</div>
);
}
else if (additionalServiceCategory === AdditionalServiceCategory.SMSPayment) {
else if (additionalServiceCategory === AdditionalServiceCategory.SMSPayment && onResendClick) {
rs.push(
<div
key="sms-payment-amount"
className="transaction-amount"
className={`status-label success`}
onClick={() => onResendClick()}
>{'재발송'}</div>
)
}