|
@@ -10,7 +10,7 @@ import {
|
|
|
Button,
|
|
|
} from 'antd';
|
|
|
import moment from 'moment';
|
|
|
-import { productType } from '../../utils/config';
|
|
|
+import { productType, pageSize } from '../../utils/config';
|
|
|
import styles from './index.less';
|
|
|
|
|
|
@Form.create()
|
|
@@ -34,17 +34,21 @@ export default class SoldProductList extends Component {
|
|
|
handleFilterSubmit = (e) => {
|
|
|
e.preventDefault();
|
|
|
const filters = this.getFormValue();
|
|
|
- this.props.dispatch({ type: 'snapshot/query', payload: filters });
|
|
|
+ this.props.dispatch({ type: 'snapshot/query', payload: { ...filters, pageSize } });
|
|
|
}
|
|
|
|
|
|
handleFilterReset = () => {
|
|
|
this.props.form.resetFields();
|
|
|
- this.props.dispatch({ type: 'snapshot/query', payload: {} });
|
|
|
+ this.props.dispatch({ type: 'snapshot/query', payload: { pageSize } });
|
|
|
}
|
|
|
|
|
|
handleTableChange = (pagination) => {
|
|
|
- const filters = { ...this.getFormValue(), ...pagination };
|
|
|
- this.props.dispatch({ type: 'snapshot/query', payload: filters });
|
|
|
+ const filters = {
|
|
|
+ ...this.getFormValue(),
|
|
|
+ pageNo: pagination.current,
|
|
|
+ pageSize: pagination.pageSize
|
|
|
+ };
|
|
|
+ this.props.dispatch({ type: 'snapshot/query', payload: { ...filters, pageSize } });
|
|
|
}
|
|
|
|
|
|
render() {
|