|
@@ -10,6 +10,7 @@ import {
|
|
|
Button,
|
|
|
} from 'antd';
|
|
|
import moment from 'moment';
|
|
|
+import PageHeaderLayout from '../../layouts/PageHeaderLayout';
|
|
|
import { productType, pageSize } from '../../utils/config';
|
|
|
import styles from './index.less';
|
|
|
|
|
@@ -111,52 +112,54 @@ export default class SoldProductList extends Component {
|
|
|
const newPagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条` };
|
|
|
|
|
|
return (
|
|
|
- <Card>
|
|
|
- <Form layout="vertical" className={styles.tableSearchForm} onSubmit={this.handleFilterSubmit}>
|
|
|
- <Row gutter={24}>
|
|
|
- <Col span={6}>
|
|
|
- <Form.Item label="校区名称">
|
|
|
- {getFieldDecorator('campusName', {
|
|
|
- })(<Input placeholder="请输入" />)}
|
|
|
- </Form.Item>
|
|
|
- </Col>
|
|
|
- <Col span={6}>
|
|
|
- <Form.Item label="校区编号">
|
|
|
- {getFieldDecorator('campusCode', {
|
|
|
- })(<Input placeholder="请输入" />)}
|
|
|
- </Form.Item>
|
|
|
- </Col>
|
|
|
- <Col span={6}>
|
|
|
- <Form.Item label="产品编号">
|
|
|
- {getFieldDecorator('productCode', {
|
|
|
- })(<Input placeholder="请输入" />)}
|
|
|
- </Form.Item>
|
|
|
- </Col>
|
|
|
- <Col span={6}>
|
|
|
- <Form.Item label="终端编号">
|
|
|
- {getFieldDecorator('userCode', {
|
|
|
- })(<Input placeholder="请输入" />)}
|
|
|
- </Form.Item>
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- <Row>
|
|
|
- <Col span={24} style={{ textAlign: 'left' }}>
|
|
|
- <Button type="primary" htmlType="submit">搜索</Button>
|
|
|
- <Button onClick={this.handleFilterReset} style={{ marginLeft: 8 }}>重置</Button>
|
|
|
- </Col>
|
|
|
- </Row>
|
|
|
- </Form>
|
|
|
- <Table
|
|
|
- bordered
|
|
|
- loading={listLoading}
|
|
|
- onChange={this.handleTableChange}
|
|
|
- rowKey={record => record.id}
|
|
|
- columns={columns}
|
|
|
- dataSource={list}
|
|
|
- pagination={newPagination}
|
|
|
- scroll={{ x: 1800 }}
|
|
|
- />
|
|
|
- </Card>
|
|
|
+ <PageHeaderLayout>
|
|
|
+ <Card>
|
|
|
+ <Form layout="vertical" className={styles.tableSearchForm} onSubmit={this.handleFilterSubmit}>
|
|
|
+ <Row gutter={24}>
|
|
|
+ <Col span={6}>
|
|
|
+ <Form.Item label="校区名称">
|
|
|
+ {getFieldDecorator('campusName', {
|
|
|
+ })(<Input placeholder="请输入" />)}
|
|
|
+ </Form.Item>
|
|
|
+ </Col>
|
|
|
+ <Col span={6}>
|
|
|
+ <Form.Item label="校区编号">
|
|
|
+ {getFieldDecorator('campusCode', {
|
|
|
+ })(<Input placeholder="请输入" />)}
|
|
|
+ </Form.Item>
|
|
|
+ </Col>
|
|
|
+ <Col span={6}>
|
|
|
+ <Form.Item label="产品编号">
|
|
|
+ {getFieldDecorator('productCode', {
|
|
|
+ })(<Input placeholder="请输入" />)}
|
|
|
+ </Form.Item>
|
|
|
+ </Col>
|
|
|
+ <Col span={6}>
|
|
|
+ <Form.Item label="终端编号">
|
|
|
+ {getFieldDecorator('userCode', {
|
|
|
+ })(<Input placeholder="请输入" />)}
|
|
|
+ </Form.Item>
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ <Row>
|
|
|
+ <Col span={24} style={{ textAlign: 'left' }}>
|
|
|
+ <Button type="primary" htmlType="submit">搜索</Button>
|
|
|
+ <Button onClick={this.handleFilterReset} style={{ marginLeft: 8 }}>重置</Button>
|
|
|
+ </Col>
|
|
|
+ </Row>
|
|
|
+ </Form>
|
|
|
+ <Table
|
|
|
+ bordered
|
|
|
+ loading={listLoading}
|
|
|
+ onChange={this.handleTableChange}
|
|
|
+ rowKey={record => record.id}
|
|
|
+ columns={columns}
|
|
|
+ dataSource={list}
|
|
|
+ pagination={newPagination}
|
|
|
+ scroll={{ x: 1800 }}
|
|
|
+ />
|
|
|
+ </Card>
|
|
|
+ </PageHeaderLayout>
|
|
|
);
|
|
|
}
|
|
|
}
|