diff --git a/src/pages/List/Applications.js b/src/pages/List/Applications.js index 62d467438ad4066b626a6fec4bfa43b60ebaca48..7b317d9a66bea9672b10f7b90d6e9e08956f22e9 100644 --- a/src/pages/List/Applications.js +++ b/src/pages/List/Applications.js @@ -12,11 +12,24 @@ import styles from './Applications.less'; const { Option } = Select; const FormItem = Form.Item; -@Form.create() @connect(({ list, loading }) => ({ list, loading: loading.models.list, })) +@Form.create({ + onValuesChange({ dispatch }, values) { + // 表单项变化时请求数据 + // eslint-disable-next-line + console.log(values); + // 模拟查询表单生效 + dispatch({ + type: 'list/fetch', + payload: { + count: 8, + }, + }); + }, +}) class FilterCardList extends PureComponent { componentDidMount() { const { dispatch } = this.props; @@ -28,24 +41,6 @@ class FilterCardList extends PureComponent { }); } - handleFormSubmit = () => { - const { form, dispatch } = this.props; - // setTimeout 用于保证获取表单值是在所有表单字段更新完毕的时候 - setTimeout(() => { - form.validateFields(err => { - if (!err) { - // eslint-disable-next-line - dispatch({ - type: 'list/fetch', - payload: { - count: 8, - }, - }); - } - }); - }, 0); - }; - render() { const { list: { list }, @@ -101,7 +96,7 @@ class FilterCardList extends PureComponent { {getFieldDecorator('category')( - + 类目一 类目二 类目三 @@ -123,11 +118,7 @@ class FilterCardList extends PureComponent { {getFieldDecorator('author', {})( - )} @@ -136,11 +127,7 @@ class FilterCardList extends PureComponent { {getFieldDecorator('rate', {})( - diff --git a/src/pages/List/Articles.js b/src/pages/List/Articles.js index 815e79cc47bf847578eb10851d576b66d5b08a74..fdf4902be8957332d164cb4ff59c84b524b5a73f 100644 --- a/src/pages/List/Articles.js +++ b/src/pages/List/Articles.js @@ -12,11 +12,24 @@ const FormItem = Form.Item; const pageSize = 5; -@Form.create() @connect(({ list, loading }) => ({ list, loading: loading.models.list, })) +@Form.create({ + onValuesChange({ dispatch }, values) { + // 表单项变化时请求数据 + // eslint-disable-next-line + console.log(values); + // 模拟查询表单生效 + dispatch({ + type: 'list/fetch', + payload: { + count: 5, + }, + }); + }, +}) class SearchList extends Component { componentDidMount() { const { dispatch } = this.props; @@ -125,7 +138,7 @@ class SearchList extends Component { {getFieldDecorator('category')( - + 类目一 类目二 类目三 @@ -174,7 +187,6 @@ class SearchList extends Component { {getFieldDecorator('user', {})( diff --git a/src/pages/List/List.js b/src/pages/List/List.js index 18ac75692c2fdb1e011eace468ad9d557213a7e3..9483e3d962758693c46fe94f8f93c6e2a63b1823 100644 --- a/src/pages/List/List.js +++ b/src/pages/List/List.js @@ -21,7 +21,12 @@ class SearchList extends Component { default: break; } - }; + } + + handleFormSubmit = (value) => { + // eslint-disable-next-line + console.log(value); + } render() { const tabList = [ diff --git a/src/pages/List/Projects.js b/src/pages/List/Projects.js index e2821754c38064a6b586b83b0e3226920e26b841..9bffa57ed5dff365328984c98e88997b0ab729d8 100644 --- a/src/pages/List/Projects.js +++ b/src/pages/List/Projects.js @@ -15,11 +15,24 @@ const FormItem = Form.Item; /* eslint react/no-array-index-key: 0 */ -@Form.create() @connect(({ list, loading }) => ({ list, loading: loading.models.list, })) +@Form.create({ + onValuesChange({ dispatch }, values) { + // 表单项变化时请求数据 + // eslint-disable-next-line + console.log(values); + // 模拟查询表单生效 + dispatch({ + type: 'list/fetch', + payload: { + count: 8, + }, + }); + }, +}) class CoverCardList extends PureComponent { componentDidMount() { const { dispatch } = this.props; @@ -31,24 +44,6 @@ class CoverCardList extends PureComponent { }); } - handleFormSubmit = () => { - const { form, dispatch } = this.props; - // setTimeout 用于保证获取表单值是在所有表单字段更新完毕的时候 - setTimeout(() => { - form.validateFields(err => { - if (!err) { - // eslint-disable-next-line - dispatch({ - type: 'list/fetch', - payload: { - count: 8, - }, - }); - } - }); - }, 0); - }; - render() { const { list: { list = [] }, @@ -108,7 +103,7 @@ class CoverCardList extends PureComponent { {getFieldDecorator('category')( - + 类目一 类目二 类目三 @@ -131,7 +126,6 @@ class CoverCardList extends PureComponent { {getFieldDecorator('author', {})(