search.js 1.1 KB

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