Browse Source

积分明细

zhoulisen 5 years ago
parent
commit
fd79487b7c
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      src/pages/shop/integralDetail/index.js

+ 5
- 1
src/pages/shop/integralDetail/index.js View File

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