Authored by 周少峰

guang bug & shop base template

... ... @@ -460,4 +460,21 @@ class ListModel
{
return ShopData::getShopInfoByBrandDomain($domain);
}
/**
* 获取店铺基础模板banner
* @return string
*/
public static function getShopBaseBanner($shopId)
{
$decorator = ListData::getShopDecorator($shopId);
if (isset($decorator['code']) && $decorator['code'] === 200 && isset($decorator['data']['list']) && !empty($decorator['data']['list'])) {
foreach ($decorator['data']['list'] as $val) {
if ($val['resource_name'] == 'shopTopBanner_base') {
$banner = json_decode($val['resource_data'], true);
return $banner[0]['shopSrc'];
}
}
}
}
}
... ...
... ... @@ -193,7 +193,7 @@ class IndexController extends AbstractAction
// $build[] = Helpers::formatArticle($article, true, $isApp, false, $uid);
// }
foreach ($article['data']['list']['artList'] as $articlekey =>$article) {
$build[$key] = Helpers::formatArticle($article, true, $isApp, false, $uid);
$build[$articlekey] = Helpers::formatArticle($article, true, $isApp, false, $uid);
if($this->isApp()){
$build[$articlekey]['collect']['url'] = Helpers::url('/author/index', array('id' => $id), 'guang');
}
... ...
... ... @@ -125,7 +125,7 @@ class IndexController extends AbstractAction
*/
public function brandAction()
{
//如果是app,可直接获取shopId
//如果是app 或者多品店,可直接获取shopId
$appShopId = $this->get('shop_id');
if (!empty($appShopId)) {
$this->shop($appShopId);
... ... @@ -141,6 +141,10 @@ class IndexController extends AbstractAction
// 存标题信息
$title = '';
$brandLogo = Product\ListModel::getBrandLogoByDomain($domain, $title);
//如果店铺使用基础模板TODO
$baseBanner = ListModel::getShopBaseBanner($brandLogo['shopId']);
//无店铺:0--->品牌页 无单品店有多品店:1--->搜索页 有单品店:2--->店铺页面
if ($brandLogo['type'] == 2 && !empty($brandLogo['shopId'])) {
$this->shop($brandLogo['shopId'], $uid);
... ... @@ -245,12 +249,15 @@ class IndexController extends AbstractAction
}
$this->setTitle($title);
$this->setNavHeader($title, true, SITE_MAIN);
//店铺页banner
if ($baseBanner) {
$data['brandHome']['banner'] = $data['brandHome'];
}
$this->_view->display('index', $data);
}
/**
* 活动专区
* 活动专区
*
* @param int channel 1:男生,2:女生,3:潮童,4:创意生活
*/
... ...