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
刘传洋
8 years ago
Commit
ab84cff52d5669dce9cf69f64d8b7f87acbc8259
1 parent
72ede85c
m
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
apps/cart/models/cart-service.js
apps/cart/models/cart-service.js
View file @
ab84cff
...
...
@@ -760,7 +760,8 @@ const getRecommendProduct = (channel, uid, udid, page) => {
img
:
it
.
default_images
?
helpers
.
image
(
it
.
default_images
,
190
,
250
)
:
''
,
alt
:
it
.
product_name
,
price
:
'¥'
+
chelper
.
transPrice
(
it
.
sales_price
),
marketPrice
:
it
.
market_price
?
'¥'
+
chelper
.
transPrice
(
it
.
market_price
)
:
''
marketPrice
:
(
it
.
market_price
&&
it
.
market_price
>
it
.
sales_price
)
?
'¥'
+
chelper
.
transPrice
(
it
.
market_price
)
:
''
};
// 商品链接
...
...
Please
register
or
login
to post a comment