Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
周少峰
9 years ago
Commit
44eaae6041328a498f49e8abc71dc62ccae56de8
1 parent
6896f070
guang bug & shop base template
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
4 deletions
yohobuy/m.yohobuy.com/application/models/Product/List.php
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Index.php
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Index.php
yohobuy/m.yohobuy.com/application/models/Product/List.php
View file @
44eaae6
...
...
@@ -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'
];
}
}
}
}
}
...
...
yohobuy/m.yohobuy.com/application/modules/Guang/controllers/Index.php
View file @
44eaae6
...
...
@@ -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
[
$
article
key
]
=
Helpers
::
formatArticle
(
$article
,
true
,
$isApp
,
false
,
$uid
);
if
(
$this
->
isApp
()){
$build
[
$articlekey
][
'collect'
][
'url'
]
=
Helpers
::
url
(
'/author/index'
,
array
(
'id'
=>
$id
),
'guang'
);
}
...
...
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Index.php
View file @
44eaae6
...
...
@@ -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:创意生活
*/
...
...
Please
register
or
login
to post a comment