Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
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
36f398c49972ae9a0c7ffea8b6f633c6309c9ac9
1 parent
dbaaebda
语法错误检查
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
55 deletions
apps/home/controllers/favorite.js
apps/home/models/favorite.js
apps/home/controllers/favorite.js
View file @
36f398c
...
...
@@ -29,67 +29,16 @@ const fav = {
const
tab
=
req
.
query
.
tab
;
const
page
=
req
.
query
.
page
;
const
result
=
[];
let
isend
=
true
;
if
(
tab
===
'brand'
)
{
const
gender
=
'1,2,3'
;
// todo 获取频道的性别
favModel
.
getFavBrandData
(
uid
,
gender
,
page
,
10
).
then
(
data
=>
{
if
(
data
&&
page
<=
data
.
page_total
)
{
data
.
brand_list
.
forEach
(
function
(
d
)
{
result
.
push
({
fav_id
:
d
.
brand_id
,
link
:
''
,
// todo
imgUrl
:
d
.
brand_ico
?
helpers
.
image
(
d
.
brand_ico
,
160
,
125
)
:
''
,
brandName
:
d
.
brand_name
,
down
:
d
.
status
===
0
});
});
if
(
page
<
data
.
page_total
)
{
isend
=
false
;
}
}
return
res
.
json
({
isend
:
isend
,
list
:
result
});
return
res
.
json
(
data
);
});
}
else
{
favModel
.
getFavProductData
(
uid
,
page
,
10
).
then
(
data
=>
{
if
(
data
&&
page
<=
data
.
page_total
)
{
data
.
product_list
.
forEach
(
function
(
d
)
{
if
(
!
d
.
product_skn
)
{
return
;
}
let
link
=
''
;
if
(
d
.
goodsId
&&
d
.
cnAlphabet
)
{
link
=
helpers
.
urlFormat
(
`
/
product
/
pro_$
{
d
.
product_id
}
_$
{
d
.
goodsId
}
/${d.cnAlphabet}.html`
)
;
}
result
.
push
({
fav_id
:
d
.
product_id
,
link
:
link
,
imgUrl
:
d
.
image
?
helpers
.
image
(
d
.
image
)
:
''
,
title
:
d
.
product_name
,
price
:
'¥'
+
Number
(
Math
.
max
(
d
.
market_price
,
0
)).
toFixed
(
2
),
discountPrice
:
(
Number
(
d
.
market_price
)
-
Number
(
d
.
sales_price
)
>
0
)
?
'¥'
+
Number
(
Math
.
max
(
d
.
sales_price
,
0
)).
toFixed
(
2
)
:
false
,
sellOut
:
d
.
storage
<
0
,
invalidGoods
:
d
.
status
===
0
});
});
if
(
page
<
data
.
page_total
)
{
isend
=
false
;
}
}
return
res
.
json
({
isend
:
isend
,
list
:
result
});
return
res
.
json
(
data
);
}).
catch
(
next
);
}
},
...
...
apps/home/models/favorite.js
View file @
36f398c
'use strict'
;
const
api
=
global
.
yoho
.
API
;
const
helpers
=
global
.
yoho
.
helpers
;
/**
* 处理用户收藏的商品数据
...
...
@@ -16,7 +17,47 @@ exports.getFavProductData = (uid, page, limit) => {
page
:
page
,
limit
:
limit
}).
then
(
result
=>
{
return
result
.
data
;
var
isend
=
true
,
list
=
[],
data
=
result
.
data
;
if
(
data
&&
page
<=
data
.
page_total
)
{
data
.
product_list
.
forEach
(
function
(
d
)
{
if
(
!
d
.
product_skn
)
{
return
;
}
let
link
=
''
;
let
discountPrice
=
false
;
if
(
d
.
goodsId
&&
d
.
cnAlphabet
)
{
link
=
helpers
.
urlFormat
(
`
/
product
/
pro_$
{
d
.
product_id
}
_$
{
d
.
goodsId
}
/${d.cnAlphabet}.html`
)
;
}
if
(
Number
(
d
.
market_price
)
-
Number
(
d
.
sales_price
)
>
0
)
{
discountPrice
=
'¥'
+
Number
(
Math
.
max
(
d
.
sales_price
,
0
)).
toFixed
(
2
);
}
list
.
push
({
fav_id
:
d
.
product_id
,
link
:
link
,
imgUrl
:
d
.
image
?
helpers
.
image
(
d
.
image
)
:
''
,
title
:
d
.
product_name
,
price
:
'¥'
+
Number
(
Math
.
max
(
d
.
market_price
,
0
)).
toFixed
(
2
),
discountPrice
:
discountPrice
,
sellOut
:
d
.
storage
<
0
,
invalidGoods
:
d
.
status
===
0
});
});
if
(
page
<
data
.
page_total
)
{
isend
=
false
;
}
}
return
{
isend
:
isend
,
list
:
list
};
});
};
...
...
@@ -37,7 +78,30 @@ exports.getFavBrandData = (uid, gender, page, limit) => {
page
:
page
,
limit
:
limit
}).
then
(
result
=>
{
return
result
.
data
;
var
isend
=
true
,
list
=
[],
data
=
result
.
data
;
if
(
data
&&
page
<=
data
.
page_total
)
{
data
.
brand_list
.
forEach
(
function
(
d
)
{
list
.
push
({
fav_id
:
d
.
brand_id
,
link
:
''
,
// todo
imgUrl
:
d
.
brand_ico
?
helpers
.
image
(
d
.
brand_ico
,
160
,
125
)
:
''
,
brandName
:
d
.
brand_name
,
down
:
d
.
status
===
0
});
});
if
(
page
<
data
.
page_total
)
{
isend
=
false
;
}
}
return
{
isend
:
isend
,
list
:
list
};
});
};
...
...
Please
register
or
login
to post a comment