Authored by 郝肖肖

'换货详情划线价格'

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