|
@@ -39,6 +39,9 @@ $categoryNavItem.on('click', function(e) { |
|
@@ -39,6 +39,9 @@ $categoryNavItem.on('click', function(e) { |
39
|
|
39
|
|
40
|
var query = {};
|
40
|
var query = {};
|
41
|
|
41
|
|
|
|
42
|
+ $('.category a').removeClass('active');
|
|
|
43
|
+ $(this).addClass('active');
|
|
|
44
|
+
|
42
|
e.preventDefault();
|
45
|
e.preventDefault();
|
43
|
|
46
|
|
44
|
querys.forEach(function(value) {
|
47
|
querys.forEach(function(value) {
|
|
@@ -55,7 +58,6 @@ $categoryNavItem.on('click', function(e) { |
|
@@ -55,7 +58,6 @@ $categoryNavItem.on('click', function(e) { |
55
|
});
|
58
|
});
|
56
|
|
59
|
|
57
|
// 触发第一个search
|
60
|
// 触发第一个search
|
58
|
-
|
|
|
59
|
if ($categoryNavItem.length > 0) {
|
61
|
if ($categoryNavItem.length > 0) {
|
60
|
$categoryNavItem.eq(0).trigger('click');
|
62
|
$categoryNavItem.eq(0).trigger('click');
|
61
|
}
|
63
|
}
|
|
@@ -76,7 +78,7 @@ if ($('#list-nav').length > 0) { |
|
@@ -76,7 +78,7 @@ if ($('#list-nav').length > 0) { |
76
|
if ($('.back-ground-white').length > 10) {
|
78
|
if ($('.back-ground-white').length > 10) {
|
77
|
$('.more-activity').show();
|
79
|
$('.more-activity').show();
|
78
|
$('.back-ground-white').each(function(index, e) {
|
80
|
$('.back-ground-white').each(function(index, e) {
|
79
|
- if(index > 9) {
|
81
|
+ if (index > 9) {
|
80
|
e.hide();
|
82
|
e.hide();
|
81
|
}
|
83
|
}
|
82
|
});
|
84
|
});
|
|
@@ -85,7 +87,7 @@ if ($('.back-ground-white').length > 10) { |
|
@@ -85,7 +87,7 @@ if ($('.back-ground-white').length > 10) { |
85
|
$('.more-activity').click(function() {
|
87
|
$('.more-activity').click(function() {
|
86
|
$('.more-activity').hide();
|
88
|
$('.more-activity').hide();
|
87
|
$('.back-ground-white').each(function(index, e) {
|
89
|
$('.back-ground-white').each(function(index, e) {
|
88
|
- if(index > 9) {
|
90
|
+ if (index > 9) {
|
89
|
e.show();
|
91
|
e.show();
|
90
|
}
|
92
|
}
|
91
|
});
|
93
|
});
|