...
|
...
|
@@ -11,7 +11,7 @@ class BrandController extends AbstractAction |
|
|
|
|
|
/**
|
|
|
* 品牌一览
|
|
|
*
|
|
|
*
|
|
|
* @param string gender 老版本中使用的参数, 做兼容判断
|
|
|
* @param int channel 1表示男生频道, 2表示女生频道, 3表示潮童频道, 4表示创意生活频道
|
|
|
*/
|
...
|
...
|
@@ -41,12 +41,15 @@ class BrandController extends AbstractAction |
|
|
}
|
|
|
|
|
|
// 渲染模板
|
|
|
$this->_view->display('index', Category\BrandModel::getBrandByChannel($channel));
|
|
|
$this->_view->display('index', array(
|
|
|
'brandPage' => true,
|
|
|
'channel' => Category\BrandModel::getBrandByChannel($channel)
|
|
|
));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 品牌一览搜索页
|
|
|
*
|
|
|
*
|
|
|
* @param string gender 老版本中使用的参数, 做兼容判断
|
|
|
* @param int channel 1表示男生频道, 2表示女生频道, 3表示潮童频道, 4表示创意生活频道
|
|
|
*/
|
...
|
...
|
|