...
|
...
|
@@ -43,6 +43,7 @@ var winH = $(window).height(), |
|
|
noResult = '<p class="no-result">未找到相关搜索结果</p>';
|
|
|
|
|
|
require('../common');
|
|
|
|
|
|
// 默认筛选条件
|
|
|
var defaultOpt = require('../common/query-param');
|
|
|
|
...
|
...
|
@@ -51,7 +52,7 @@ var defaultOpt = require('../common/query-param'); |
|
|
var param = location.search;
|
|
|
var isApp = param.indexOf('app_version') > -1 || param.indexOf('appVersion') > -1;
|
|
|
|
|
|
//不阻塞字体文件加载
|
|
|
// 不阻塞字体文件加载
|
|
|
setTimeout(function() {
|
|
|
if (isApp) {
|
|
|
$.ajax({
|
...
|
...
|
@@ -95,7 +96,7 @@ var defaultOpt = require('../common/query-param'); |
|
|
skns: $('.popularity-title').data('skns'),
|
|
|
},
|
|
|
success: function(data) {
|
|
|
$('.product-warp>.goods-container').html(data)
|
|
|
$('.product-warp>.goods-container').html(data);
|
|
|
},
|
|
|
error: function() {
|
|
|
tip.show('网络断开连接了~');
|
...
|
...
|
@@ -126,8 +127,8 @@ var defaultOpt = require('../common/query-param'); |
|
|
});
|
|
|
}
|
|
|
});
|
|
|
}, 0)
|
|
|
|
|
|
}, 0);
|
|
|
|
|
|
}());
|
|
|
|
|
|
|
...
|
...
|
@@ -229,6 +230,7 @@ function getPageGoods(info) { |
|
|
|
|
|
navType = info.data.type;
|
|
|
nav = navInfo[navType];
|
|
|
|
|
|
// 不需要重新加载并且数据请求结束
|
|
|
if (nav.end && toTop) {
|
|
|
toTop = false;
|
...
|
...
|
@@ -332,8 +334,8 @@ function tabChange(dom, index) { |
|
|
// 首页导航
|
|
|
(function(nav, posNav, main) {
|
|
|
var scrollToNav1 = function() {
|
|
|
window.scrollTo(0, $('#nav').offset().top + 5)
|
|
|
}
|
|
|
window.scrollTo(0, $('#nav').offset().top + 5);
|
|
|
};
|
|
|
$(nav + ' li, ' + posNav + ' li').not('li.all-goods').on('touchstart', function() {
|
|
|
var index = $(this).index(),
|
|
|
activeTab = $(this).attr('tab');
|
...
|
...
|
@@ -376,7 +378,8 @@ function scrollHandler() { |
|
|
nav2OffsetTop = $('#list-nav').length ? $('#list-nav').offset().top : 0;
|
|
|
|
|
|
var tra;
|
|
|
//分页加载店铺商品列表
|
|
|
|
|
|
// 分页加载店铺商品列表
|
|
|
if (sTop + winH > scH - 0.25 * $goodsContainer.height() - 50) {
|
|
|
if ($pre !== undefined) {
|
|
|
search({
|
...
|
...
|
@@ -389,7 +392,7 @@ function scrollHandler() { |
|
|
}
|
|
|
}
|
|
|
|
|
|
//分页加载“上新”和“人气”商品数据
|
|
|
// 分页加载“上新”和“人气”商品数据
|
|
|
if (sTop + winH * 2 > scH) {
|
|
|
switch (viewType) {
|
|
|
case 2:
|
...
|
...
|
@@ -419,7 +422,7 @@ function scrollHandler() { |
|
|
document.addEventListener('touchmove', function(e) {
|
|
|
// sub classify不阻止默认事件
|
|
|
if ($(e.target).closest('.sub-classify').length === 0) {
|
|
|
//e.preventDefault();
|
|
|
// e.preventDefault();
|
|
|
}
|
|
|
if ($('.filter-mask').length && !$('.filter-mask').hasClass('hide')) {
|
|
|
e.preventDefault();
|
...
|
...
|
@@ -445,7 +448,7 @@ $(window).ready(function() { |
|
|
scH = $('#scroller').outerHeight();
|
|
|
}, 500);
|
|
|
|
|
|
$(document).scroll(scrollHandler)
|
|
|
$(document).scroll(scrollHandler);
|
|
|
lazyLoad($('img.lazy'));
|
|
|
});
|
|
|
|
...
|
...
|
@@ -682,7 +685,7 @@ $subNav.on('touchend touchcancel', function(e) { |
|
|
}
|
|
|
|
|
|
}
|
|
|
window.scrollTo(0, $('#list-nav').offset().top + 5)
|
|
|
window.scrollTo(0, $('#list-nav').offset().top + 5);
|
|
|
} else {
|
|
|
|
|
|
filter.hideFilter();// 隐藏面板
|
...
|
...
|
@@ -776,7 +779,7 @@ $subNav.on('touchend touchcancel', function(e) { |
|
|
url: '/product/search/search',
|
|
|
nextPage: false
|
|
|
}, function() {
|
|
|
window.scrollTo(0, $('#list-nav').offset().top + 5)
|
|
|
window.scrollTo(0, $('#list-nav').offset().top + 5);
|
|
|
});
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -799,7 +802,7 @@ $nav2.on('touchstart', 'li', function(e) { |
|
|
|
|
|
$('.shop-foot-wrapper .buriedpoint').click(function() {
|
|
|
var subGroup = $(this).find('.sub-group');
|
|
|
|
|
|
|
|
|
if (subGroup.hasClass('hide')) {
|
|
|
subGroup.removeClass('hide');
|
|
|
} else {
|
...
|
...
|
|