Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-portal-fe
·
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-05-12 18:28:36 +0800
Commit
072733089c0c57624dadee05eecdccb6e824652a
2 parents
9237a318
4a7497e9
Merge branch 'release/qqtest' of
http://git.dev.yoho.cn/platform/yohobuy-portal-…
…fe into release/qqtest
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
client/js/basegoods/index.js
client/js/goods/netsale.js
client/js/basegoods/index.js
View file @
0727330
...
...
@@ -253,9 +253,9 @@ var g = new common.grid({
if
(
item
.
isAuditing
===
200
)
{
html
.
push
(
"<p>是否VIP:"
+
YNEnum
.
enum
[
item
.
isVip
]
+
"</p>"
);
if
(
item
.
productPrice
.
returnCoinMoney
){
html
.
push
(
"<p>
反
yoho币金额:"
+
item
.
productPrice
.
returnCoinMoney
+
"</p>"
);
html
.
push
(
"<p>
返
yoho币金额:"
+
item
.
productPrice
.
returnCoinMoney
+
"</p>"
);
}
else
{
html
.
push
(
"<p>
反
yoho币金额:0</p>"
);
html
.
push
(
"<p>
返
yoho币金额:0</p>"
);
}
}
return
html
.
join
(
''
);
...
...
client/js/goods/netsale.js
View file @
0727330
...
...
@@ -141,9 +141,9 @@ var g = new common.grid({
'<p><strong>是否VIP:</strong>'
+
vip
+
'</p>'
;
if
(
item
.
returnCoinMoney
){
html
+=
"<p><strong>
反
yoho币金额:</strong>"
+
item
.
returnCoinMoney
+
"</p>"
;
html
+=
"<p><strong>
返
yoho币金额:</strong>"
+
item
.
returnCoinMoney
+
"</p>"
;
}
else
{
html
+=
"<p><strong>
反
yoho币金额:</strong>0</p>"
;
html
+=
"<p><strong>
返
yoho币金额:</strong>0</p>"
;
}
return
html
;
}
...
...
Please
register
or
login
to post a comment