...
|
...
|
@@ -121,8 +121,8 @@ function getOrders(option) { |
|
|
data: opt,
|
|
|
success: function(data) {
|
|
|
var num;
|
|
|
console.log($orderContainer);
|
|
|
if (data !== ' ') {
|
|
|
|
|
|
if (data) {
|
|
|
order.page = opt.page;
|
|
|
|
|
|
if (opt.page === 1) {
|
...
|
...
|
@@ -142,6 +142,10 @@ function getOrders(option) { |
|
|
|
|
|
window.rePosFooter(); // 重新计算底部位置
|
|
|
} else {
|
|
|
if (opt.page > 1) {
|
|
|
return;
|
|
|
}
|
|
|
$curContainer.html('<div class="no-order"><div class="icon"></div><span>你还没有订单!</span><a class="walk-way" href="//m.yohobuy.com/product/new">随便逛逛</a></div>');
|
|
|
order.end = true;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -245,7 +249,7 @@ orderHammer.on('tap', function(e) { |
|
|
});
|
|
|
|
|
|
function scrollHandler() {
|
|
|
if (order.end === false && $(window).scrollTop() + winH >
|
|
|
if (!order.end && $(window).scrollTop() + winH >
|
|
|
$(document).height() - 0.25 * $orderContainer.height()) {
|
|
|
|
|
|
// 下拉请求时不显示mask
|
...
|
...
|
|