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
lore-w
9 years ago
Commit
462ead610fa8c2877529ef0f82e466178c76c50b
2 parents
f7a76119
df4d8cca
Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
library/Plugin/DataProcess/WebChannel/Process.php
yohobuy/www.yohobuy.com/application/models/Index/Home.php
library/Plugin/DataProcess/WebChannel/Process.php
View file @
462ead6
...
...
@@ -642,8 +642,12 @@ class Process
$result
[
'category'
][
'navs'
]
=
self
::
mergeNavProcess
(
$data
[
$key
+
1
],
$type
);
}
// floor模版
foreach
(
$data
[
$key
+
2
][
'data'
]
as
$val
)
{
$val
[
'src'
]
=
Images
::
getImageUrl
(
$val
[
'src'
],
185
,
510
,
2
);
foreach
(
$data
[
$key
+
2
][
'data'
]
as
$pos
=>
$val
)
{
$width
=
185
;
$height
=
510
;
if
(
$pos
==
1
)
{
$width
=
377
;
$height
=
504
;
}
$val
[
'src'
]
=
Images
::
getImageUrl
(
$val
[
'src'
],
$width
,
$height
,
2
);
$val
[
'url'
]
=
Helpers
::
transUrl
(
$val
[
'url'
],
$type
);
$result
[
'category'
][
'list'
][]
=
array
(
'href'
=>
$val
[
'url'
],
...
...
yohobuy/www.yohobuy.com/application/models/Index/Home.php
View file @
462ead6
...
...
@@ -202,6 +202,10 @@ class HomeModel
'order'
=>
's_t_desc'
,
'shelve_time'
=>
strtotime
(
"-60 days"
)
.
','
.
time
()
);
//女首频道最新上架参数是gender=2,3
if
(
$channel
==
self
::
COOKIE_NAME_GIRLS
)
{
$params
[
'gender'
]
=
'2,3'
;
}
// 最新上架分类
if
(
isset
(
ChannelConfig
::
$newArrivalSortList
[
$channel
]))
{
$sortList
=
ChannelConfig
::
$newArrivalSortList
[
$channel
];
...
...
Please
register
or
login
to post a comment