Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
周少峰
9 years ago
Commit
685b29719c7e5224403c957c4dca3b217f208d32
2 parents
03723999
29189382
Merge branch 'feature/web-list' of git.dev.yoho.cn:web/yohobuy into feature/web-list
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
18 deletions
yohobuy/www.yohobuy.com/application/models/Product/Brands.php
yohobuy/www.yohobuy.com/application/models/Product/Brands.php
View file @
685b297
...
...
@@ -24,7 +24,7 @@ class BrandsModel {
* 搜索品牌数据
*
* @param $condition array
*
搜索数据的条件
* 搜索数据的条件
* @param $options array
* @return array
*/
...
...
@@ -32,8 +32,11 @@ class BrandsModel {
// 调用商品搜索接口
$data
=
SearchData
::
searchElasticByCondition
(
$condition
);
//获取品牌banner数据
$banner
=
self
::
getBannerByDomain
(
$domain
,
$brandId
,
$uid
=
''
);
$brandName
=
self
::
$shopName
;
$options
[
'brandName'
]
=
$brandName
;
if
(
isset
(
$data
[
'code'
])
&&
$data
[
'code'
]
===
200
)
{
//获取分类列表数据
...
...
@@ -43,18 +46,15 @@ class BrandsModel {
if
(
isset
(
$classes
[
'code'
])
&&
$classes
[
'code'
]
===
200
)
{
$data
[
'data'
][
'filter'
][
'group_sort'
]
=
$classes
[
'data'
][
'sort'
];
}
$brandName
=
self
::
$shopName
;
$options
[
'brandName'
]
=
$brandName
;
//用户浏览记录
// 组织模板数据
$list
=
HelperSearch
::
getList
(
$data
,
$options
);
//合并商品搜索数据与品牌banner数据
$
data
=
array_merge_recursive
(
$data
,
$banner
);
$
list
=
array_merge_recursive
(
$list
,
$banner
);
$data
=
array
(
//初始化js
...
...
@@ -65,19 +65,10 @@ class BrandsModel {
$data
=
array
();
}
//获取品牌系列数据
$adNav
=
self
::
getAdNav
(
$condition
[
'brand'
]);
$data
[
'list'
][
'leftContent'
][]
=
array
(
'picLink'
=>
$adNav
);
return
$data
;
}
...
...
@@ -123,7 +114,6 @@ class BrandsModel {
// 返回banner数据
return
array
(
'list'
=>
array
(
'brandBanner'
=>
array
(
'bannerHeight'
=>
'150'
,
'coled'
=>
$is_favorite
,
...
...
@@ -144,8 +134,7 @@ class BrandsModel {
)
)
)
)
);
);
}
//获取品牌系列数据
...
...
Please
register
or
login
to post a comment