...
|
...
|
@@ -22,17 +22,20 @@ productListWithFilter.scrollActived = false; |
|
|
|
|
|
Tab.prototype.home = function() { // 隐藏筛选 TAB
|
|
|
$filterBox.css('display', 'none');
|
|
|
$('.filter-mask').addClass('hide');
|
|
|
productListWithFilter.scrollActived = false;
|
|
|
};
|
|
|
Tab.prototype.getallgoods = function() { // 显示筛选 TAB
|
|
|
$listNav.find('li').removeClass('active');
|
|
|
$listNav.find('.default').addClass('active');
|
|
|
$filterBox.css('display', 'block');
|
|
|
$('.filter-mask').addClass('hide');
|
|
|
productListWithFilter.getGoodsList({type: 'default', page: 1});
|
|
|
productListWithFilter.scrollActived = true;
|
|
|
};
|
|
|
Tab.prototype.getnewgoods = function() {
|
|
|
$filterBox.css('display', 'none');
|
|
|
$('.filter-mask').addClass('hide');
|
|
|
productListWithFilter.getGoodsList({type: 'new', page: 1});
|
|
|
productListWithFilter.scrollActived = true;
|
|
|
};
|
...
|
...
|
|