search.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import react, { PureComponent } from 'react';
  2. import PropTypes from 'prop-types';
  3. import { Button, Form, Row, Col, Icon } from 'antd';
  4. import DataSearch from '../../../components/DataSearch';
  5. @Form.create()
  6. export default class Search extends PureComponent {
  7. static propTypes = {
  8. form: PropTypes.object.isRequired,
  9. onSearch: PropTypes.func,
  10. onAdd: PropTypes.func,
  11. field: PropTypes.string,
  12. keyword: PropTypes.string,
  13. };
  14. render() {
  15. const { field, keyword, onSearch, onAdd } = this.props;
  16. const searchGroupProps = {
  17. field,
  18. keyword,
  19. size: 'default',
  20. select: true,
  21. selectOptions: [{
  22. value: 'name', name: '产品名称', mode: 'input',
  23. }, {
  24. value: 'code', name: '产品编号', mode: 'input',
  25. }],
  26. selectProps: {
  27. defaultValue: field || 'name',
  28. },
  29. onSearch: (value) => {
  30. onSearch(value);
  31. },
  32. };
  33. return (
  34. <Row gutter={24}>
  35. <Col lg={10} md={12} sm={16} xs={24} style={{ marginBottom: 16 }}>
  36. <DataSearch {...searchGroupProps} />
  37. </Col>
  38. </Row>
  39. );
  40. }
  41. }