search.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import react, { PureComponent } from 'react';
  2. import { Button, Form, Row, Col, Icon } from 'antd';
  3. import DataSearch from '../../../components/DataSearch';
  4. @Form.create()
  5. export default class Search extends PureComponent {
  6. render() {
  7. const { field, keyword, onSearch, onAdd } = this.props;
  8. const searchGroupProps = {
  9. field,
  10. keyword,
  11. size: 'default',
  12. select: true,
  13. selectOptions: [{
  14. value: 'name', name: '产品名称', mode: 'input',
  15. },{
  16. value: 'code', name: '产品编号', mode: 'input',
  17. }],
  18. selectProps: {
  19. defaultValue: field || 'code',
  20. },
  21. onSearch: (value) => {
  22. onSearch(value);
  23. },
  24. };
  25. return (
  26. <Row gutter={24}>
  27. <Col lg={10} md={12} sm={16} xs={24} style={{ marginBottom: 16 }}>
  28. <DataSearch { ...searchGroupProps } />
  29. </Col>
  30. <Col lg={{ offset: 7, span: 7 }} md={12} sm={8} xs={24} style={{ marginBottom: 16, textAlign: 'right' }}>
  31. <Button type="primary" onClick={onAdd}><Icon type="plus-circle" />新建</Button>
  32. </Col>
  33. </Row>
  34. );
  35. }
  36. }