Key-In 결제 List,결제 신청, 결제신청결과 화면 추가2
This commit is contained in:
@@ -48,17 +48,8 @@ export const KeyInPaymentRequestPage = () => {
|
||||
|
||||
};
|
||||
|
||||
const [formData, setFormData] = useState({
|
||||
mid: 'nictest001m',
|
||||
goodsName: '',
|
||||
amount: 0
|
||||
});
|
||||
const handleInputChange = (field: string, value: string) => {
|
||||
setFormData(prev => ({
|
||||
...prev,
|
||||
[field]: value
|
||||
}));
|
||||
};
|
||||
|
||||
|
||||
|
||||
const onClickToRequest = () => {
|
||||
callKeyInPaymentRequest();
|
||||
@@ -76,7 +67,6 @@ export const KeyInPaymentRequestPage = () => {
|
||||
<div className="billing-field">
|
||||
<select
|
||||
className="wid-100"
|
||||
onChange={(e) => handleInputChange('merchant', e.target.value)}
|
||||
>
|
||||
<option>nictest001m</option>
|
||||
</select>
|
||||
@@ -116,10 +106,10 @@ export const KeyInPaymentRequestPage = () => {
|
||||
<div className="billing-row">
|
||||
<div className="billing-label">구매자 이메일 <span>*</span></div>
|
||||
<div className="billing-field">
|
||||
<select disabled>
|
||||
<option selected>일시불</option>
|
||||
<option>일시불</option>
|
||||
</select>
|
||||
<input
|
||||
type="text"
|
||||
value=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -178,7 +168,6 @@ export const KeyInPaymentRequestPage = () => {
|
||||
<div className="billing-field">
|
||||
<select
|
||||
className="wid-100"
|
||||
onChange={(e) => handleInputChange('merchant', e.target.value)}
|
||||
>
|
||||
<option>일시불</option>
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user