@@ -41,7 +41,11 @@ export default class Index extends Component {
loadRecords() {
Taro.showLoading()
- this.props.dispatchPointsRecords().then(res => {
+ const params = {
+ pageNum: 1,
+ pageSize: 9999,
+ }
+ this.props.dispatchPointsRecords(params).then(res => {
this.checkChoose(res.records)
this._$_dataReady()
Taro.hideLoading()