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
6ccd956a0269d0e59c4b121f9d1abc9aa219c53e
1 parent
61b5b515
guang recmend goods
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
yohobuy/www.yohobuy.com/application/models/Guang/Info.php
yohobuy/www.yohobuy.com/application/models/Guang/Info.php
View file @
6ccd956
...
...
@@ -70,7 +70,7 @@ class InfoModel
{
$result
=
array
();
//推荐商品列表
$goods
=
array
();
$goods
=
$goodsGroup
=
array
();
$result
[
'pathNav'
]
=
self
::
getCenterCrumb
(
$article
[
'article_title'
],
$channel
);
//文章头部信息
$result
[
'header'
][
'title'
]
=
$article
[
'article_title'
];
...
...
@@ -88,10 +88,12 @@ class InfoModel
if
(
isset
(
$data
[
'contents'
])
&&
!
empty
(
$data
[
'contents'
]))
{
foreach
(
$data
[
'contents'
]
as
$key
=>
$val
)
{
foreach
(
$val
as
$type
=>
$con
)
{
if
(
$type
!=
'goods'
)
{
$result
[
'content'
][]
=
is_callable
(
"self::
$type
"
)
?
self
::
$type
(
$con
[
'data'
])
:
''
;
}
else
{
if
(
$type
===
'goods'
)
{
$goods
=
array_merge_recursive
(
$goods
,
self
::
goods
(
$con
[
'data'
]));
}
elseif
(
$type
===
'goodsGroup'
)
{
$goodsGroup
=
array_merge_recursive
(
$goodsGroup
,
self
::
goodsGroup
(
$con
[
'data'
]));
}
else
{
$result
[
'content'
]
=
is_callable
(
"self::
$type
"
)
?
self
::
$type
(
$con
[
'data'
])
:
''
;
}
}
}
...
...
@@ -99,6 +101,9 @@ class InfoModel
if
(
!
empty
(
$goods
))
{
$result
[
'content'
][]
=
array
(
'relatedReco'
=>
array
(
'recos'
=>
$goods
));
}
if
(
!
empty
(
$goodsGroup
))
{
$result
[
'content'
][
'relatedReco'
]
=
$goodsGroup
;
}
//赞、收藏
if
(
isset
(
$data
[
'baseInfo'
])
&&
!
empty
(
$data
[
'baseInfo'
]))
{
$result
[
'userInfo'
][
'isLike'
]
=
$data
[
'baseInfo'
][
'isPraise'
]
==
'Y'
?
true
:
false
;
...
...
@@ -182,20 +187,21 @@ class InfoModel
*/
public
static
function
goodsGroup
(
$goodsGroup
)
{
$result
=
$groupSkn
=
$productSkn
=
array
();
$result
=
$groupSkn
=
array
();
foreach
(
$goodsGroup
as
$key
=>
$val
)
{
if
(
!
isset
(
$val
[
'list'
])
||
empty
(
$val
[
'list'
]))
{
continue
;
}
$productSkn
=
array
();
foreach
(
$val
[
'list'
]
as
$k
=>
$v
)
{
$groupSkn
[
$key
][]
=
$v
[
'id'
];
$productSkn
[]
=
$v
[
'id'
];
}
}
if
(
!
empty
(
$productSkn
))
{
$product
=
SearchData
::
searchElasticByCondition
(
array
(
'query'
=>
implode
(
','
,
$productSkn
)));
if
(
isset
(
$product
[
'data'
][
'product_list'
]))
{
$result
[
'relatedReco'
][
'recos'
]
=
array_slice
(
self
::
formatProduct
(
$product
[
'data'
][
'product_list'
]),
0
,
4
);
if
(
!
empty
(
$productSkn
))
{
$product
=
SearchData
::
searchElasticByCondition
(
array
(
'query'
=>
implode
(
','
,
$productSkn
)));
if
(
isset
(
$product
[
'data'
][
'product_list'
]))
{
$result
[
$key
][
'recos'
]
=
array_slice
(
self
::
formatProduct
(
$product
[
'data'
][
'product_list'
]),
0
,
4
);
}
}
}
return
$result
;
...
...
Please
register
or
login
to post a comment