Showing
1 changed file
with
4 additions
and
2 deletions
@@ -150,7 +150,8 @@ $brandMulti.click(function() { | @@ -150,7 +150,8 @@ $brandMulti.click(function() { | ||
150 | $brandMore.trigger('click'); | 150 | $brandMore.trigger('click'); |
151 | } | 151 | } |
152 | 152 | ||
153 | - $brandPanel.addClass('multi'); //显示出checkbox | 153 | + brandShowMore(); |
154 | + $brandPanel.removeClass('hide').addClass('multi'); //显示出checkbox | ||
154 | $(this).addClass('hide'); | 155 | $(this).addClass('hide'); |
155 | }); | 156 | }); |
156 | 157 | ||
@@ -232,7 +233,8 @@ $('.multi-select-cancel').click(function() { | @@ -232,7 +233,8 @@ $('.multi-select-cancel').click(function() { | ||
232 | $brandMore.trigger('click'); | 233 | $brandMore.trigger('click'); |
233 | } | 234 | } |
234 | 235 | ||
235 | - $panel.removeClass('multi'); | 236 | + $panel.addClass('hide').removeClass('multi'); |
237 | + brandHideMore(); | ||
236 | clearChecked($panel.find('.checkbox.checked')); //清除选中状态 | 238 | clearChecked($panel.find('.checkbox.checked')); //清除选中状态 |
237 | }); | 239 | }); |
238 | 240 |
-
Please register or login to post a comment