부가서비스
- SMS 결제통보 엑셀 다운로드 API 추가, 재발송 버튼 클릭시 Bottom Sheet 출현
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user