...
|
...
|
@@ -523,6 +523,7 @@ $(window).scroll(function() { |
|
|
$(function() {
|
|
|
var type = window.queryString.type;
|
|
|
var selector;
|
|
|
var $selectNav;
|
|
|
|
|
|
// type 1: 上装, 3:下装, 6: 鞋装
|
|
|
if (type && type !== '1') {
|
...
|
...
|
@@ -530,13 +531,14 @@ $(function() { |
|
|
} else {
|
|
|
selector = '.coat';
|
|
|
}
|
|
|
$('#list-nav').find(selector).addClass('active').siblings().removeClass('active');
|
|
|
$selectNav = $('#list-nav').find(selector);
|
|
|
$selectNav.addClass('active').siblings().removeClass('active');
|
|
|
search([{
|
|
|
type: 'breakSort',
|
|
|
id: $(selector).data('id')
|
|
|
id: $selectNav.data('id')
|
|
|
}, {
|
|
|
type: 'breakSize',
|
|
|
id: $(selector).data('allsub')
|
|
|
id: $selectNav.data('allsub')
|
|
|
}]);
|
|
|
});
|
|
|
|
...
|
...
|
|