- 빌링- 결제신청 할부개월 set 수정

This commit is contained in:
HyeonJongKim
2025-11-13 09:39:28 +09:00
parent 3c0ffb1fa1
commit b4e0cc6ce5

View File

@@ -116,7 +116,7 @@ export const BillingChargePage = () => {
value='00'
></option>
);
for (let i = 2; i <= 24; i++) {
for (let i = 2; i <= 33; i++) {
let val = (i < 10) ? '0' + i : '' + i;
rs.push(
<option
@@ -222,7 +222,7 @@ export const BillingChargePage = () => {
<div className="billing-field">
<select
value={installmentMonth}
onChange={(e: ChangeEvent<HTMLSelectElement>) => setBuyerName(e.target.value)}
onChange={(e: ChangeEvent<HTMLSelectElement>) => setInstallmentMonth(e.target.value)}
>
{makeInstallmentMonthSelect()}
</select>