...
|
...
|
@@ -11,7 +11,8 @@ var page = 1, |
|
|
navSwiper,
|
|
|
notab = 0,
|
|
|
sort = '',
|
|
|
id = '';
|
|
|
id = '',
|
|
|
noResult = '<p class="no-result">未找到相关搜索结果</p>';
|
|
|
|
|
|
function hotrank(page, sort, tabId, notab) {
|
|
|
loading.showLoadingMask();
|
...
|
...
|
@@ -28,7 +29,11 @@ function hotrank(page, sort, tabId, notab) { |
|
|
if (page === 1) {
|
|
|
$('.rank-main').remove();
|
|
|
}
|
|
|
$('#hotRank').append(data);
|
|
|
if(data === ' '){
|
|
|
$('#hotRank').html(noResult)
|
|
|
}else{
|
|
|
$('#hotRank').append(data);
|
|
|
}
|
|
|
lazyLoad($('img.lazy'));
|
|
|
$('.rank-main ul li:gt(2)').find('.item-content i').removeClass('top');
|
|
|
winH = $(window).height();
|
...
|
...
|
|