Authored by 陶雨

Merge branch 'release/qqtest' of http://git.dev.yoho.cn/platform/yohobuy-portal-…

…fe into release/qqtest
... ... @@ -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('');
... ...
... ... @@ -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;
}
... ...