Authored by 毕凯

品牌页面 热门品牌不显示标题

1 {{> layout/header}} 1 {{> layout/header}}
2 <div class="brand-page yoho-page"> 2 <div class="brand-page yoho-page">
  3 + {{# channel}}
  4 +
3 <div class="newbrand-search"> 5 <div class="newbrand-search">
4 - <div class="search-box clearfix"> 6 + <div class="search-box clearfix">
5 <a href="{{searchUrl}}" > 7 <a href="{{searchUrl}}" >
6 <input type="text" class="search-input" placeholder="查找品牌" readonly="true"> 8 <input type="text" class="search-input" placeholder="查找品牌" readonly="true">
7 <i class="search-icon iconfont">&#xe60f;</i> 9 <i class="search-icon iconfont">&#xe60f;</i>
@@ -40,4 +42,6 @@ @@ -40,4 +42,6 @@
40 {{/ list}} 42 {{/ list}}
41 </div> 43 </div>
42 {{/ brandList}} 44 {{/ brandList}}
  45 +
  46 + {{/channel}}
43 {{> layout/footer}} 47 {{> layout/footer}}
1 <div class="hot-brands"> 1 <div class="hot-brands">
2 - {{> home/floor_header}} 2 + {{^ brandPage}}
  3 + {{> home/floor_header}}
  4 + {{/ brandPage}}
3 <div class="brands-swiper"> 5 <div class="brands-swiper">
4 <ul class="brands-list swiper-wrapper clearfix"> 6 <ul class="brands-list swiper-wrapper clearfix">
5 {{# list}} 7 {{# list}}
@@ -12,4 +14,4 @@ @@ -12,4 +14,4 @@
12 {{/ list}} 14 {{/ list}}
13 </ul> 15 </ul>
14 </div> 16 </div>
15 -</div>  
  17 +</div>
@@ -11,7 +11,7 @@ class BrandController extends AbstractAction @@ -11,7 +11,7 @@ class BrandController extends AbstractAction
11 11
12 /** 12 /**
13 * 品牌一览 13 * 品牌一览
14 - * 14 + *
15 * @param string gender 老版本中使用的参数, 做兼容判断 15 * @param string gender 老版本中使用的参数, 做兼容判断
16 * @param int channel 1表示男生频道, 2表示女生频道, 3表示潮童频道, 4表示创意生活频道 16 * @param int channel 1表示男生频道, 2表示女生频道, 3表示潮童频道, 4表示创意生活频道
17 */ 17 */
@@ -41,12 +41,15 @@ class BrandController extends AbstractAction @@ -41,12 +41,15 @@ class BrandController extends AbstractAction
41 } 41 }
42 42
43 // 渲染模板 43 // 渲染模板
44 - $this->_view->display('index', Category\BrandModel::getBrandByChannel($channel)); 44 + $this->_view->display('index', array(
  45 + 'brandPage' => true,
  46 + 'channel' => Category\BrandModel::getBrandByChannel($channel)
  47 + ));
45 } 48 }
46 49
47 /** 50 /**
48 * 品牌一览搜索页 51 * 品牌一览搜索页
49 - * 52 + *
50 * @param string gender 老版本中使用的参数, 做兼容判断 53 * @param string gender 老版本中使用的参数, 做兼容判断
51 * @param int channel 1表示男生频道, 2表示女生频道, 3表示潮童频道, 4表示创意生活频道 54 * @param int channel 1表示男生频道, 2表示女生频道, 3表示潮童频道, 4表示创意生活频道
52 */ 55 */