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
Email Patches
Plain Diff
Browse Files
Authored by
yangyang
9 years ago
Commit
3cac309d0b7d5d48957d34ffbddc2def4fce7ba7
1 parent
20b22bab
new页面时间显示格式,new页面分类列表和新品上架列表顺序
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
library/WebPlugin/HelperSearch.php
yohobuy/www.yohobuy.com/application/models/Product/Sale.php
library/WebPlugin/HelperSearch.php
View file @
3cac309
...
...
@@ -102,6 +102,10 @@ class HelperSearch
if
(
isset
(
$data
[
'discount'
][
'discount'
])
&&
!
empty
(
$data
[
'discount'
][
'discount'
]))
{
$result
[
'leftContent'
][][
'allDiscount'
]
=
self
::
getDiscount
(
$data
[
'discount'
][
'discount'
]);
}
//一周新品上架
if
(
isset
(
$data
[
'recent'
][
'recent'
])
&&
!
empty
(
$data
[
'recent'
][
'recent'
]))
{
$result
[
'leftContent'
][][
'newSales'
]
=
self
::
recentShelve
(
$data
[
'recent'
][
'recent'
]);
}
//分类条件(搜索页面)
if
(
isset
(
$data
[
'sort'
][
'sort'
]))
{
//分类条件(搜索页面)
...
...
@@ -112,10 +116,7 @@ class HelperSearch
$result
[
'leftContent'
][][
'allSort'
]
=
self
::
groupSort
(
$data
[
'sort'
][
'sort'
]);
}
}
//一周新品上架
if
(
isset
(
$data
[
'recent'
][
'recent'
])
&&
!
empty
(
$data
[
'recent'
][
'recent'
]))
{
$result
[
'leftContent'
][][
'newSales'
]
=
self
::
recentShelve
(
$data
[
'recent'
][
'recent'
]);
}
//品牌banner
$result
[
'brandBanner'
]
=
isset
(
$data
[
'brand'
])
&&
!
empty
(
$data
[
'brand'
])
?
self
::
getBannerFormat
(
$data
[
'brand'
],
$options
[
'brandBanner'
])
:
array
();
//总记录数
...
...
@@ -1096,7 +1097,7 @@ class HelperSearch
$data[$i]['active']
= true;
}
$data[$i]['href']
= self::buildUrl(
$query
);
$data[$i]['name']
=
$k
;
$data[$i]['name']
=
date('m月d日', strtotime(
$k
))
;
$i
++;
}
$result
= array(
...
...
@@ -1104,6 +1105,7 @@ class HelperSearch
);
unset(
$data
);
unset(
$query
);
return
$result
;
}
/**
...
...
yohobuy/www.yohobuy.com/application/models/Product/Sale.php
View file @
3cac309
...
...
@@ -42,15 +42,13 @@ class SaleModel
}
$special
=
$specialInfo
[
'data'
];
//Sale首页 banner数据
$data
[
'saleBanner'
][
'bannerHeight'
]
=
$special
[
'banner'
][
0
][
'height'
];
$data
[
'saleBanner'
][
'img'
]
=
$special
[
'banner'
][
0
][
'img'
];
$data
[
'saleTitle'
][
'name'
]
=
'全部商品'
;
$data
[
'saleTitle'
][
'count'
]
=
isset
(
$data
[
'totalCount'
])
?
$data
[
'totalCount'
]
:
0
;
//Sale首页 banner数据
$data
[
'saleBanner'
][
'bannerHeight'
]
=
$special
[
'banner'
][
0
][
'height'
];
$data
[
'saleBanner'
][
'img'
]
=
$special
[
'banner'
][
0
][
'img'
];
$data
[
'saleTitle'
][
'name'
]
=
'全部商品'
;
$data
[
'saleTitle'
][
'count'
]
=
isset
(
$data
[
'totalCount'
])
?
$data
[
'totalCount'
]
:
0
;
}
//获取广告位数据
if
(
isset
(
$special
[
'left_ad_code'
]))
{
$nodeContent
=
HelperSearch
::
getNodeContent
(
$special
[
'left_ad_code'
]);
...
...
Please
register
or
login
to post a comment