...
|
...
|
@@ -266,22 +266,25 @@ let searchView = function() { |
|
|
$navBox.on('click', 'li', function(event) {
|
|
|
let $curNav = $(event.currentTarget);
|
|
|
|
|
|
// 处理新添加的默认,最新排序
|
|
|
// if ($curNav.hasClass('first-li-more')) {
|
|
|
// filter.hideFilter();
|
|
|
|
|
|
// if ($newList.hasClass('hide')) {
|
|
|
// $curNav.find('.up').removeClass('hide');
|
|
|
// $curNav.find('.down').addClass('hide');
|
|
|
// $newList.removeClass('hide');
|
|
|
// } else {
|
|
|
// $curNav.find('.up').addClass('hide');
|
|
|
// $curNav.find('.down').removeClass('hide');
|
|
|
// $newList.addClass('hide');
|
|
|
// }
|
|
|
// switchNav($curNav);
|
|
|
// return;
|
|
|
// }
|
|
|
// 处理新添加的默认,人气排序
|
|
|
if ($curNav.hasClass('first-li-more')) {
|
|
|
filter.hideFilter();
|
|
|
|
|
|
if ($newList.hasClass('hide')) {
|
|
|
// $curNav.find('.up').removeClass('hide');
|
|
|
// $curNav.find('.down').addClass('hide');
|
|
|
|
|
|
$newList.removeClass('hide');
|
|
|
} else {
|
|
|
// $curNav.find('.up').addClass('hide');
|
|
|
// $curNav.find('.down').removeClass('hide');
|
|
|
|
|
|
$newList.addClass('hide');
|
|
|
}
|
|
|
|
|
|
switchNav($curNav);
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$newList.addClass('hide');
|
|
|
|
...
|
...
|
@@ -298,35 +301,36 @@ let searchView = function() { |
|
|
});
|
|
|
});
|
|
|
|
|
|
// 单独处理默认、最新排序条件
|
|
|
// $newList.on('click', 'li', function(event) {
|
|
|
// let $defaultCurNav = $(event.currentTarget);
|
|
|
// let $firstMore = $('.first-li-more');
|
|
|
|
|
|
// $newList.addClass('hide');
|
|
|
// $firstMore.find('.up').addClass('hide');
|
|
|
// $firstMore.find('.down').removeClass('hide');
|
|
|
|
|
|
// if ($defaultCurNav.hasClass('new')) {
|
|
|
// $firstMore.attr('data-order', 's_t_desc').find('.span-test').text('最新');
|
|
|
// $defaultCurNav.addClass('active');
|
|
|
// $newList.find('.default').removeClass('active');
|
|
|
// } else {
|
|
|
// $firstMore.attr('data-order', '').find('.span-test').text('默认');
|
|
|
// $defaultCurNav.addClass('active');
|
|
|
// $newList.find('.new').removeClass('active');
|
|
|
// }
|
|
|
|
|
|
// checkOrderChange($firstMore, function() {
|
|
|
// fetchNew({ // eslint-disable-line
|
|
|
// $box: $goodBox,
|
|
|
// before: $box => {
|
|
|
// fetchXhr.abort();
|
|
|
// $box.html('');
|
|
|
// }
|
|
|
// });
|
|
|
// });
|
|
|
// });
|
|
|
// 单独处理默认、人气排序条件
|
|
|
$newList.on('click', 'li', function(event) {
|
|
|
let $defaultCurNav = $(event.currentTarget);
|
|
|
let $firstMore = $('.first-li-more');
|
|
|
|
|
|
$newList.addClass('hide');
|
|
|
|
|
|
// $firstMore.find('.up').addClass('hide');
|
|
|
// $firstMore.find('.down').removeClass('hide');
|
|
|
|
|
|
if ($defaultCurNav.hasClass('popularity')) {
|
|
|
$firstMore.attr('data-order', 'h_v_desc').find('.span-test').text('人气');
|
|
|
$defaultCurNav.addClass('active');
|
|
|
$newList.find('.default').removeClass('active');
|
|
|
} else {
|
|
|
$firstMore.attr('data-order', '').find('.span-test').text('默认');
|
|
|
$defaultCurNav.addClass('active');
|
|
|
$newList.find('.popularity').removeClass('active');
|
|
|
}
|
|
|
|
|
|
checkOrderChange($firstMore, function() {
|
|
|
fetchNew({ // eslint-disable-line
|
|
|
$box: $goodBox,
|
|
|
before: $box => {
|
|
|
fetchXhr.abort();
|
|
|
$box.html('');
|
|
|
}
|
|
|
});
|
|
|
});
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
...
|
...
|
|