mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-05 18:17:58 +08:00
151 lines
4.7 KiB
Markdown
151 lines
4.7 KiB
Markdown
# 表单组合
|
||
|
||
- order: 5
|
||
|
||
集中营,展示和表单相关的其他 ant-design 组件。
|
||
|
||
---
|
||
|
||
````jsx
|
||
import { Form, Select, InputNumber, DatePicker, Switch, Radio,
|
||
Slider, Button, message, Row, Col, Upload, Icon } from 'antd';
|
||
const FormItem = Form.Item;
|
||
const Option = Select.Option;
|
||
const RadioButton = Radio.Button;
|
||
const RadioGroup = Radio.Group;
|
||
|
||
const Demo = React.createClass({
|
||
mixins: [Form.ValueMixin],
|
||
|
||
getInitialState() {
|
||
return {
|
||
formData: {
|
||
inputNumber: undefined,
|
||
static: '唧唧复唧唧木兰当户织呀',
|
||
switch: undefined,
|
||
slider: undefined,
|
||
select: undefined,
|
||
startDate: undefined,
|
||
endDate: undefined,
|
||
}
|
||
};
|
||
},
|
||
|
||
handleUpload(info) {
|
||
if (info.file.status !== 'uploading') {
|
||
console.log(info.file, info.fileList);
|
||
}
|
||
if (info.file.status === 'done') {
|
||
message.success(info.file.name + ' 上传成功。');
|
||
} else if (info.file.status === 'error') {
|
||
message.error(info.file.name + ' 上传失败。');
|
||
}
|
||
},
|
||
|
||
handleSubmit(e) {
|
||
e.preventDefault();
|
||
console.log('收到表单值:', this.state.formData);
|
||
},
|
||
|
||
render() {
|
||
const formData = this.state.formData;
|
||
return (
|
||
<Form horizontal onSubmit={this.handleSubmit} >
|
||
<FormItem
|
||
label="InputNumber 数字输入框:"
|
||
labelCol={{span: 8}}
|
||
wrapperCol={{span: 10}}
|
||
required>
|
||
<InputNumber size="large" min={1} max={10} style={{width: 100}} defaultValue={3} name="inputNumber" onChange={this.setValue.bind(this, 'inputNumber')} value={formData.inputNumber} />
|
||
<span className="ant-form-text"> 台机器</span>
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="我是标题:"
|
||
labelCol={{span: 8}}
|
||
wrapperCol={{span: 10}}
|
||
required>
|
||
<p className="ant-form-text" id="static" name="static">唧唧复唧唧木兰当户织呀</p>
|
||
<p className="ant-form-text">
|
||
<a href="#">链接文字</a>
|
||
</p>
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="Switch 开关:"
|
||
labelCol={{span: 8}}
|
||
wrapperCol={{span: 10}}
|
||
required>
|
||
<Switch name="switch" onChange={this.setValue.bind(this, 'switch')} value={formData.switch} />
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="Slider 滑动输入条:"
|
||
labelCol={{span: 8}}
|
||
wrapperCol={{span: 10}}
|
||
required>
|
||
<Slider marks={['A', 'B', 'C', 'D', 'E', 'F', 'G']} name="slider" onChange={this.setValue.bind(this, 'slider')} />
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="Select 选择器:"
|
||
labelCol={{span: 8}}
|
||
wrapperCol={{span: 16}}
|
||
required>
|
||
<Select size="large" defaultValue="lucy" style={{width: 200}} name="select" onChange={this.setValue.bind(this, 'select')} value={formData.select}>
|
||
<Option value="jack">jack</Option>
|
||
<Option value="lucy">lucy</Option>
|
||
<Option value="disabled" disabled>disabled</Option>
|
||
<Option value="yiminghe">yiminghe</Option>
|
||
</Select>
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="DatePicker 日期选择框:"
|
||
labelCol={{span: 8}}
|
||
required>
|
||
<Col span="6">
|
||
<DatePicker name="startDate" onChange={this.setValue.bind(this, 'startDate')} value={formData.startDate} />
|
||
</Col>
|
||
<Col span="1">
|
||
<p className="ant-form-split">-</p>
|
||
</Col>
|
||
<Col span="6">
|
||
<DatePicker name="endDate" onChange={this.setValue.bind(this, 'endDate')} value={formData.endDate} />
|
||
</Col>
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="选项:"
|
||
labelCol={{span: 8}}>
|
||
<RadioGroup defaultValue="a" size="large">
|
||
<RadioButton value="a">选项一</RadioButton>
|
||
<RadioButton value="b">选项二</RadioButton>
|
||
<RadioButton value="c">选项三</RadioButton>
|
||
</RadioGroup>
|
||
</FormItem>
|
||
|
||
<FormItem
|
||
label="logo图:"
|
||
labelCol={{span: 8}}
|
||
wrapperCol={{span: 16}}
|
||
help="提示信息要长长长长长长长长长长长长长长">
|
||
<Upload name="logo" action="/upload.do" listType="picture" onChange={this.handleUpload}>
|
||
<Button type="ghost">
|
||
<Icon type="upload" /> 点击上传
|
||
</Button>
|
||
</Upload>
|
||
</FormItem>
|
||
<Row style={{marginTop: 24}}>
|
||
<Col span="16" offset="8">
|
||
<Button type="primary" htmlType="submit">确定</Button>
|
||
</Col>
|
||
</Row>
|
||
</Form>
|
||
);
|
||
}
|
||
});
|
||
|
||
ReactDOM.render(<Demo />, mountNode);
|
||
````
|