Merge branch 'hotfix/areaOnline' into feature/mip
Showing
3 changed files
with
3 additions
and
3 deletions
@@ -11,7 +11,7 @@ let moreObj = { | @@ -11,7 +11,7 @@ let moreObj = { | ||
11 | }, | 11 | }, |
12 | init: function() { | 12 | init: function() { |
13 | this.domInit(); | 13 | this.domInit(); |
14 | - this.page = 1; | 14 | + this.page = $('#currentPage').val() || 1; |
15 | this.loading = false; | 15 | this.loading = false; |
16 | this.end = false; | 16 | this.end = false; |
17 | this.scroll(); | 17 | this.scroll(); |
@@ -11,7 +11,7 @@ let moreObj = { | @@ -11,7 +11,7 @@ let moreObj = { | ||
11 | }, | 11 | }, |
12 | init: function() { | 12 | init: function() { |
13 | this.domInit(); | 13 | this.domInit(); |
14 | - this.page = 1; | 14 | + this.page = $('#currentPage').val() || 1; |
15 | this.loading = false; | 15 | this.loading = false; |
16 | this.end = false; | 16 | this.end = false; |
17 | this.scroll(); | 17 | this.scroll(); |
-
Please register or login to post a comment