Authored by 郝肖肖

'换货详情划线价格'

... ... @@ -68,7 +68,7 @@ const setDetailGoods = (list) => {
reason: value.reason_name
};
if (value.real_pay_price < value.sales_price) {
if (Number(value.real_pay_price) < Number(value.sales_price)) {
goods.price = transPrice(value.real_pay_price);// 显示分摊价
goods.linePrice = transPrice(value.sales_price); // 划线的价格
}
... ...
... ... @@ -688,7 +688,8 @@ $('.re-tips').on('click', '.icon-tip-help', function() {
content = '<div class="tip-title">退款金额说明</div>';
content += '<div class="tip-content">';
content += '订单中包含的促销活动、优惠券、有货币、红包、礼品卡金额均按比例分摊至各件商品。';
content += '<p>*订单中包含的促销活动、优惠券、有货币、红包、礼品卡金额均已按比例分摊至各件商品。</p>';
content += '<p>*此金额为最大退款金额,以实际退款为准。</p>';
content += '</div>';
tipHelpDialog = new Dialog({
... ...
... ... @@ -488,6 +488,7 @@
color: #444;
font-size: 14px;
line-height: 24px;
text-align: left;
}
.tip-btn {
... ...