...
|
...
|
@@ -177,6 +177,8 @@ plusstar = { |
|
|
tip.show('没有更多内容了');
|
|
|
return true;
|
|
|
}
|
|
|
//记录切换tab位置
|
|
|
$(document).scrollTop(window.cookie(code) || 0);
|
|
|
|
|
|
that.resInit();
|
|
|
|
...
|
...
|
@@ -272,9 +274,10 @@ plusstar = { |
|
|
|
|
|
scrollFn = debounce(function() {
|
|
|
scrollTop = $(document).scrollTop();
|
|
|
|
|
|
//保留滑动位置,产品要求
|
|
|
window.setCookie(plusstar.common.codeDefault, $(this).scrollTop());
|
|
|
// 当scroll到最后一列商品的高度后继续请求下一页数据
|
|
|
if (400 + scrollTop >= $(document).height() - windowHeight) {
|
|
|
if (300 + scrollTop >= $(document).height() - windowHeight) {
|
|
|
plusstar.goodsList();
|
|
|
}
|
|
|
|
...
|
...
|
|