Showing
1 changed file
with
7 additions
and
1 deletions
@@ -160,8 +160,14 @@ function bindHoverEvent() { | @@ -160,8 +160,14 @@ function bindHoverEvent() { | ||
160 | $brand.unbind('mouseenter').unbind('mouseleave').hover(function() { | 160 | $brand.unbind('mouseenter').unbind('mouseleave').hover(function() { |
161 | var $this = $(this); | 161 | var $this = $(this); |
162 | var key = $this.attr('data-key'); | 162 | var key = $this.attr('data-key'); |
163 | + var options; | ||
163 | 164 | ||
164 | - var options = { | 165 | + // 全球购品牌不展示品牌简介 |
166 | + if (+key < 0) { | ||
167 | + return; | ||
168 | + } | ||
169 | + | ||
170 | + options = { | ||
165 | url: '/brands/brandinfo', | 171 | url: '/brands/brandinfo', |
166 | type: 'get', | 172 | type: 'get', |
167 | data: { | 173 | data: { |
-
Please register or login to post a comment