修改注册页面样式

This commit is contained in:
linxd
2025-07-16 14:10:34 +08:00
parent 38a3b80033
commit 38304c5f5b

View File

@ -194,8 +194,7 @@ const SupplierRegister: React.FC<supplierWithInputProps> = (props) => {
<Form.Item <Form.Item
name="agreement" name="agreement"
valuePropName="checked" valuePropName="checked"
labelCol={{ span: 2 }} wrapperCol={{ span: 24 }}
wrapperCol={{ span: 19 }}
rules={[ rules={[
{ {
validator: (_, value) => validator: (_, value) =>
@ -205,6 +204,7 @@ const SupplierRegister: React.FC<supplierWithInputProps> = (props) => {
}, },
]} ]}
> >
<div style={{ textAlign: 'center' }}>
<Checkbox> <Checkbox>
<Button <Button
@ -218,6 +218,7 @@ const SupplierRegister: React.FC<supplierWithInputProps> = (props) => {
</Button> </Button>
</Checkbox> </Checkbox>
</div>
</Form.Item> </Form.Item>
)} )}