Key-In 결제 List,결제 신청, 결제신청결과 화면 추가2

This commit is contained in:
HyeonJongKim
2025-09-12 14:51:06 +09:00
parent 044a0c56c3
commit 0224ed6c14

View File

@@ -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 = () => { const onClickToRequest = () => {
callKeyInPaymentRequest(); callKeyInPaymentRequest();
@@ -76,7 +67,6 @@ export const KeyInPaymentRequestPage = () => {
<div className="billing-field"> <div className="billing-field">
<select <select
className="wid-100" className="wid-100"
onChange={(e) => handleInputChange('merchant', e.target.value)}
> >
<option>nictest001m</option> <option>nictest001m</option>
</select> </select>
@@ -116,10 +106,10 @@ export const KeyInPaymentRequestPage = () => {
<div className="billing-row"> <div className="billing-row">
<div className="billing-label"> <span>*</span></div> <div className="billing-label"> <span>*</span></div>
<div className="billing-field"> <div className="billing-field">
<select disabled> <input
<option selected></option> type="text"
<option></option> value=""
</select> />
</div> </div>
</div> </div>
@@ -178,7 +168,6 @@ export const KeyInPaymentRequestPage = () => {
<div className="billing-field"> <div className="billing-field">
<select <select
className="wid-100" className="wid-100"
onChange={(e) => handleInputChange('merchant', e.target.value)}
> >
<option></option> <option></option>
</select> </select>