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

View File

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