...
|
...
|
@@ -27,7 +27,7 @@ function onPullUp() { |
|
|
) {
|
|
|
isLoading = true;
|
|
|
$.ajax({
|
|
|
url: '//m.yohobuy.com/activity/find/goods/more',
|
|
|
url: '//m.yohobuy.com:6001/activity/find/goods/more',
|
|
|
type: 'get',
|
|
|
dataType: 'jsonp',
|
|
|
data: {
|
...
|
...
|
@@ -35,11 +35,11 @@ function onPullUp() { |
|
|
},
|
|
|
success: function(res) {
|
|
|
isLoading = false;
|
|
|
if (res) {
|
|
|
if (res.data) {
|
|
|
currentPage++;
|
|
|
$(_this)
|
|
|
.find('.find-goods-wrapper')
|
|
|
.append(res);
|
|
|
.append(res.data);
|
|
|
} else {
|
|
|
noMore = true;
|
|
|
}
|
...
|
...
|
|