- 빌링- 결제신청 할부개월 set 수정
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user