Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
yyq
7 years ago
Commit
3da1a8990c9840638de73ce1a88968602a60f159
1 parent
dcb93feb
fix specialsale_id
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
apps/product/controllers/sale.js
apps/product/models/search.js
apps/product/controllers/sale.js
View file @
3da1a89
...
...
@@ -157,6 +157,8 @@ exports.special = (req, res, next) => {
let
specialId
=
params
.
specialsale_id
||
params
.
specialsaleId
,
// 专区ID
promotion
=
params
.
promotion
;
// 促销ID
specialId
=
parseInt
(
`
0
$
{
specialId
}
`
,
10
);
if
(
!
specialId
&&
!
promotion
)
{
return
next
();
}
...
...
apps/product/models/search.js
View file @
3da1a89
...
...
@@ -268,8 +268,10 @@ function getBrands4Filter(params) {
delete
params
.
callback
;
}
if
(
params
.
specialsale_id
)
{
return
this
.
saleApi
.
getSaleSpecialAsync
(
params
.
specialsale_id
).
then
(
special
=>
{
const
specialId
=
parseInt
(
`
0
$
{
params
.
specialsale_id
||
''
}
`
,
10
);
if
(
specialId
)
{
return
this
.
saleApi
.
getSaleSpecialAsync
(
specialId
).
then
(
special
=>
{
if
(
special
&&
special
.
data
)
{
let
data
=
special
.
data
;
...
...
Please
register
or
login
to post a comment