This commit is contained in:
lyp 2025-03-04 20:39:34 +08:00
parent be828e097d
commit 7c9248eeaf
2 changed files with 8 additions and 8 deletions

View File

@ -535,14 +535,14 @@ export default function Payment(props: IPaymentProps) {
<div> <div>
<div className='payBoxTitle'></div> <div className='payBoxTitle'></div>
<table className="pay-table"> <table className="pay-table" >
<colgroup> <colgroup>
<col width="100" /> <col width="100" />
<col /> <col />
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<td className="table-label"> *</td> <td className="table-label"> <span style={{color:'red'}}>*</span></td>
<td> <td>
<Form.Item <Form.Item
name="orgName" name="orgName"
@ -554,7 +554,7 @@ export default function Payment(props: IPaymentProps) {
</td> </td>
</tr> </tr>
<tr> <tr>
<td className="table-label"> *</td> <td className="table-label"> <span style={{color:'red'}}>*</span></td>
<td> <td>
<Form.Item <Form.Item
name="orgBank" name="orgBank"
@ -566,7 +566,7 @@ export default function Payment(props: IPaymentProps) {
</td> </td>
</tr> </tr>
<tr> <tr>
<td className="table-label"> *</td> <td className="table-label"> <span style={{color:'red'}}>*</span></td>
<td> <td>
<Form.Item <Form.Item
name="orgNumber" name="orgNumber"
@ -578,7 +578,7 @@ export default function Payment(props: IPaymentProps) {
</td> </td>
</tr> </tr>
<tr> <tr>
<td className="table-label"> *</td> <td className="table-label"> <span style={{color:'red'}}>*</span></td>
<td> <td>
<Form.Item <Form.Item
name="rechargeFinalTime" name="rechargeFinalTime"
@ -595,7 +595,7 @@ export default function Payment(props: IPaymentProps) {
</td> </td>
</tr> </tr>
<tr> <tr>
<td className="table-label"> *</td> <td className="table-label"><span style={{color:'red'}}>*</span></td>
<td> <td>
<Form.Item <Form.Item
name="rechargeVoucher" name="rechargeVoucher"
@ -703,7 +703,7 @@ export default function Payment(props: IPaymentProps) {
<div className='codeTitle'>Pay</div> <div className='codeTitle'>Pay</div>
<div style={{ <div style={{
background: '#FAFCFF', background: '#FAFCFF',
height: '630px', height: '610px',
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',

View File

@ -6,7 +6,7 @@
} }
.pay-table tr td { .pay-table tr td {
padding: 10px 10px; padding: 6px 10px;
/* border: 1px solid var(--color-border); */ /* border: 1px solid var(--color-border); */
} }