|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 高级搜索
|
|
|
|
en-US: Advanced search
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
三列栅格式的表单排列方式,常用于数据表格的高级搜索。
|
|
|
|
|
|
|
|
有部分定制的样式代码,由于输入标签长度不确定,需要根据具体情况自行调整。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Three columns layout is often used for advanced searching of data table.
|
|
|
|
|
|
|
|
Because the width of label is not fixed, you may need to adjust it by customizing its style.
|
|
|
|
|
|
|
|
|
|
|
|
````__react
|
|
|
|
import { Form, Row, Col, Input, Button, Icon } from 'antd';
|
|
|
|
const FormItem = Form.Item;
|
|
|
|
|
|
|
|
class AdvancedSearchForm extends React.Component {
|
|
|
|
state = {
|
|
|
|
expand: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleSearch = (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.form.validateFields((err, values) => {
|
|
|
|
console.log('Received values of form: ', values);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
handleReset = () => {
|
|
|
|
this.props.form.resetFields();
|
|
|
|
}
|
|
|
|
|
|
|
|
toggle = () => {
|
|
|
|
const { expand } = this.state;
|
|
|
|
this.setState({ expand: !expand });
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { getFieldDecorator } = this.props.form;
|
|
|
|
const formItemLayout = {
|
|
|
|
labelCol: { span: 5 },
|
|
|
|
wrapperCol: { span: 19 },
|
|
|
|
};
|
|
|
|
|
|
|
|
// To generate mock Form.Item
|
|
|
|
const children = [];
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
|
|
children.push(
|
|
|
|
<Col span={8} key={i}>
|
|
|
|
<FormItem {...formItemLayout} label={`Field ${i}`}>
|
|
|
|
{getFieldDecorator(`field-${i}`)(
|
|
|
|
<Input placeholder="placeholder" />
|
|
|
|
)}
|
|
|
|
</FormItem>
|
|
|
|
</Col>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const expand = this.state.expand;
|
|
|
|
const shownCount = expand ? children.length : 6;
|
|
|
|
return (
|
|
|
|
<Form
|
|
|
|
className="ant-advanced-search-form"
|
|
|
|
onSubmit={this.handleSearch}
|
|
|
|
>
|
|
|
|
<Row gutter={40}>
|
|
|
|
{children.slice(0, shownCount)}
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Col span={24} style={{ textAlign: 'right' }}>
|
|
|
|
<Button type="primary" htmlType="submit">Search</Button>
|
|
|
|
<Button style={{ marginLeft: 8 }} onClick={this.handleReset}>
|
|
|
|
Clear
|
|
|
|
</Button>
|
|
|
|
<a style={{ marginLeft: 8, fontSize: 12 }} onClick={this.toggle}>
|
|
|
|
Collapse <Icon type={expand ? 'up' : 'down'} />
|
|
|
|
</a>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</Form>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const WrappedAdvancedSearchForm = Form.create()(AdvancedSearchForm);
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<WrappedAdvancedSearchForm />
|
|
|
|
<div className="search-result-list">Search Result List</div>
|
|
|
|
</div>,
|
|
|
|
mountNode
|
|
|
|
);
|
|
|
|
````
|
|
|
|
|
|
|
|
````css
|
|
|
|
#components-form-demo-advanced-search .ant-advanced-search-form {
|
|
|
|
padding: 24px;
|
|
|
|
background: #fbfbfb;
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#components-form-demo-advanced-search .ant-form {
|
|
|
|
max-width: none;
|
|
|
|
}
|
|
|
|
#components-form-demo-advanced-search .search-result-list {
|
|
|
|
margin-top: 16px;
|
|
|
|
border: 1px dashed #e9e9e9;
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
min-height: 200px;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 80px;
|
|
|
|
}
|
|
|
|
</style>
|