...
|
...
|
@@ -695,7 +695,15 @@ class ShopModel |
|
|
|
|
|
public static function getIntro($shopId, $uid)
|
|
|
{
|
|
|
$data = array('brandName' => '', 'brandCont' => '', 'domain'=> '', 'logo'=> '', 'is_favorite'=> false, 'multBrandShopType' => 0);
|
|
|
$data = array(
|
|
|
'brandName' => '',
|
|
|
'brandCont' => '',
|
|
|
'domain'=> '',
|
|
|
'logo'=> '',
|
|
|
'is_favorite'=> false,
|
|
|
'multBrandShopType' => 0,
|
|
|
'shop_template_type' => 0
|
|
|
);
|
|
|
|
|
|
$intro = ShopData::getIntro($shopId, $uid);
|
|
|
|
...
|
...
|
@@ -706,6 +714,7 @@ class ShopModel |
|
|
'domain'=> $intro['data']['shop_domain'],
|
|
|
'logo'=> $intro['data']['shop_logo'],
|
|
|
'isFavorite'=> ($intro['data']['is_favorite'] === 'Y'),
|
|
|
'shopTemplateType'=> intval($intro['data']['shop_template_type']),
|
|
|
'multBrandShopType'=> intval($intro['data']['mult_brand_shop_type'])
|
|
|
);
|
|
|
}
|
...
|
...
|
|