mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
4cdf37bedb
* init form * first demo * add normal login * add style * webit * support nest errors * beauti form errors * use onReset * modal demo * add list demo * match key of errors logic * date demo * customize component * moving style * add status style * without form create * add demos * add inline style * clean up legacy * fix drawer demo * mention * fix edit-row * editable table cell * update mentions demo * fix some test case * fix upload test * fix lint * part of doc * fix ts * doc update * rm react 15 * rm config * enhance test coverage * clean up * fix FormItem context pass logic * add more demo * en to build * update demo * update demo & snapshot * more doc * update list doc * update doc * update demo to display condition render * update snapshot * add provider doc * support configProvider * more doc about validateMessages * more description * more and more doc * fix typo * en doc * Form.List doc * m v3 -> v4 * add skip
66 lines
1.6 KiB
Markdown
66 lines
1.6 KiB
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 表单布局
|
|
en-US: Form Layout
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
表单有三种布局。
|
|
|
|
## en-US
|
|
|
|
There are three layout for form: `horizontal`, `vertical`, `inline`.
|
|
|
|
```tsx
|
|
import { Form, Input, Button, Radio } from 'antd';
|
|
|
|
const FormLayoutDemo = () => {
|
|
const [formLayout, setFormLayout] = React.useState('horizontal');
|
|
|
|
const onFormLayoutChange = e => {
|
|
setFormLayout(e.target.value);
|
|
};
|
|
|
|
const formItemLayout =
|
|
formLayout === 'horizontal'
|
|
? {
|
|
labelCol: { span: 4 },
|
|
wrapperCol: { span: 14 },
|
|
}
|
|
: null;
|
|
const buttonItemLayout =
|
|
formLayout === 'horizontal'
|
|
? {
|
|
wrapperCol: { span: 14, offset: 4 },
|
|
}
|
|
: null;
|
|
|
|
return (
|
|
<div>
|
|
<Form layout={formLayout}>
|
|
<Form.Item label="Form Layout" {...formItemLayout}>
|
|
<Radio.Group defaultValue="horizontal" onChange={onFormLayoutChange}>
|
|
<Radio.Button value="horizontal">Horizontal</Radio.Button>
|
|
<Radio.Button value="vertical">Vertical</Radio.Button>
|
|
<Radio.Button value="inline">Inline</Radio.Button>
|
|
</Radio.Group>
|
|
</Form.Item>
|
|
<Form.Item label="Field A" {...formItemLayout}>
|
|
<Input placeholder="input placeholder" />
|
|
</Form.Item>
|
|
<Form.Item label="Field B" {...formItemLayout}>
|
|
<Input placeholder="input placeholder" />
|
|
</Form.Item>
|
|
<Form.Item {...buttonItemLayout}>
|
|
<Button type="primary">Submit</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<FormLayoutDemo />, mountNode);
|
|
```
|