You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

2.8 KiB

order title
10 高级搜索

三列栅格式的表单排列方式,常用于数据表格的高级搜索。

有部分定制的样式代码,由于输入标签长度不确定,需要根据具体情况自行调整。

import { Form, Input, Row, Col, Button, DatePicker } from 'antd';
const FormItem = Form.Item;

ReactDOM.render(
<Form horizontal className="ant-advanced-search-form">
  <Row gutter={16}>
    <Col sm={8}>
      <FormItem
        label="搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <Input placeholder="请输入搜索名称" />
      </FormItem>
      <FormItem
        label="较长搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <DatePicker size="default" />
      </FormItem>
      <FormItem
        label="搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <Input placeholder="请输入搜索名称" />
      </FormItem>
    </Col>
    <Col sm={8}>
      <FormItem
        label="搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <Input placeholder="请输入搜索名称" />
      </FormItem>
      <FormItem
        label="较长搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <DatePicker size="default" />
      </FormItem>
      <FormItem
        label="搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <Input placeholder="请输入搜索名称" />
      </FormItem>
    </Col>
    <Col sm={8}>
      <FormItem
        label="搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <Input placeholder="请输入搜索名称" />
      </FormItem>
      <FormItem
        label="较长搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <DatePicker size="default" />
      </FormItem>
      <FormItem
        label="搜索名称:"
        labelCol={{ span: 10 }}
        wrapperCol={{ span: 14 }}>
        <Input placeholder="请输入搜索名称" />
      </FormItem>
    </Col>
  </Row>
  <Row>
    <Col span={12} offset={12} style={{ textAlign: 'right' }}>
      <Button type="primary" htmlType="submit">搜索</Button>
      <Button>清除条件</Button>
    </Col>
  </Row>
</Form>
, mountNode);
/* 定制样式 */

.ant-advanced-search-form {
  padding: 16px 8px;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
}

/* 由于输入标签长度不确定,所以需要微调使之看上去居中 */
.ant-advanced-search-form > .row {
  position: relative;
  left: -6px;
}

.ant-advanced-search-form .ant-btn + .ant-btn {
  margin-left: 8px;
}