...
|
...
|
@@ -135,10 +135,17 @@ var g = new common.grid({ |
|
|
var vip = ENUM.isVIP[item.isVIP] ? ENUM.isVIP[item.isVIP] : '',
|
|
|
retailPrice = item.retailPrice ? item.retailPrice : '',
|
|
|
salesPrice = item.salesPrice ? item.salesPrice : '';
|
|
|
return '<p><strong>吊牌价:</strong>' + retailPrice + '</p>' +
|
|
|
|
|
|
var html = '<p><strong>吊牌价:</strong>' + retailPrice + '</p>' +
|
|
|
'<p><strong>销售价:</strong>' + salesPrice + '</p>' +
|
|
|
'<p><strong>是否VIP:</strong>' + vip + '</p>'+
|
|
|
'<p><strong>反yoho币金额:</strong>' + item.returnCoin + '</p>';
|
|
|
'<p><strong>是否VIP:</strong>' + vip + '</p>';
|
|
|
|
|
|
if(item.returnCoinMoney){
|
|
|
html += "<p><strong>反yoho币金额:</strong>" + item.returnCoinMoney + "</p>";
|
|
|
}else{
|
|
|
html += "<p><strong>反yoho币金额:</strong>0</p>";
|
|
|
}
|
|
|
return html;
|
|
|
}
|
|
|
}, {
|
|
|
display: '库存',
|
...
|
...
|
|