Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
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
Plain Diff
Browse Files
Authored by
陈轩
2016-10-25 10:54:49 +0800
Commit
9352a491dddbc3466c81677f50d9ecb33b8a9e5d
2 parents
76190571
35523eca
Merge remote-tracking branch 'origin/release/5.1' into release/5.1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
public/js/product/tick.js
public/js/product/tick.js
View file @
9352a49
...
...
@@ -276,7 +276,12 @@ function getMarketPrice() {
productSkn
:
productSkn
},
success
:
function
(
data
)
{
$
(
'.previous-price'
).
text
(
data
.
goodsPrice
.
previousPrice
);
if
(
data
.
goodsPrice
.
previousPrice
)
{
$
(
'.previous-price'
).
text
(
data
.
goodsPrice
.
previousPrice
);
}
else
{
$
(
'.previous-price'
).
text
(
data
.
goodsPrice
.
currentPrice
);
}
}
});
}
...
...
Please
register
or
login
to post a comment