|
|
var $ = require('yoho-jquery');
|
|
|
var debounce = require('lodash/debounce');
|
|
|
|
|
|
var search = {
|
|
|
pageIndex: 1,
|
|
|
type: null
|
...
|
...
|
@@ -45,6 +47,15 @@ var loadOrderList = function(pageIndex, type) { |
|
|
}
|
|
|
};
|
|
|
|
|
|
|
|
|
var scrollFn = debounce(function() {
|
|
|
if ($(window).scrollTop() >= $(document).height() - $(window).height() - 10) {
|
|
|
// alert('end of page');
|
|
|
|
|
|
loadOrderList(search.type, ++search.pageIndex);
|
|
|
}
|
|
|
}, 500);
|
|
|
|
|
|
/**
|
|
|
* 顶部TAB
|
|
|
*/
|
...
|
...
|
@@ -59,13 +70,10 @@ $('.header-tab a').click(function() { |
|
|
// 默认加载第一页
|
|
|
loadOrderList(search.pageIndex, 1);
|
|
|
|
|
|
|
|
|
// 滚屏分页
|
|
|
$(window).scroll(function() {
|
|
|
var scrollTop = $(window).scrollTop();
|
|
|
|
|
|
if (scrollTop > $('.installment-list').height() - 200) {
|
|
|
loadOrderList(search.type, ++search.pageIndex);
|
|
|
}
|
|
|
scrollFn();
|
|
|
});
|
|
|
|
|
|
|
...
|
...
|
|