Authored by zhangxiaoru

没有brandlist时隐藏

@@ -46,7 +46,7 @@ @@ -46,7 +46,7 @@
46 46
47 <ul class="list-box"> 47 <ul class="list-box">
48 {{# indexList}} 48 {{# indexList}}
49 - <li class="item in items"> 49 + <li>
50 <a class="no-intercept" href="#{{index}}">{{name}}</a> 50 <a class="no-intercept" href="#{{index}}">{{name}}</a>
51 </li> 51 </li>
52 {{/ indexList}} 52 {{/ indexList}}
@@ -6,7 +6,8 @@ var categoryHeight = $('.tab-box').height(), @@ -6,7 +6,8 @@ var categoryHeight = $('.tab-box').height(),
6 isBrand; 6 isBrand;
7 7
8 var $intercept = $('.no-intercept'), 8 var $intercept = $('.no-intercept'),
9 - $list = $('.brand-list-box'); 9 + $list = $('.brand-list-box'),
  10 + $listBox = $('.list-box');
10 11
11 function channels(key) { 12 function channels(key) {
12 13
@@ -97,6 +98,10 @@ $('.brand-tab').find('li').click(function() { @@ -97,6 +98,10 @@ $('.brand-tab').find('li').click(function() {
97 initialize(); 98 initialize();
98 }); 99 });
99 100
  101 +if ($listBox.find('li').length <= 0) {
  102 + $listBox.hide();
  103 +}
  104 +
100 $(function() { 105 $(function() {
101 $('.banner-swiper').each(function() { 106 $('.banner-swiper').each(function() {
102 if (!$(this).parents('.content').hasClass('hide') && $(this).hasClass('swiper-container-horizontal') === false && $(this).find('li').length > 1) { 107 if (!$(this).parents('.content').hasClass('hide') && $(this).hasClass('swiper-container-horizontal') === false && $(this).find('li').length > 1) {