Authored by Zhang

结算页退换货标识

... ... @@ -25,7 +25,12 @@
</p>
{{#if isLimitSkn}}
<p class="limit">不支持7天无理由退换货</p>
{{#isEqualOr notSevenExchange 'LRE'}}
<p class="limit">不支持7天无理由退换货</p>
{{/isEqualOr}}
{{#isEqualOr notSevenExchange 'L15DE'}}
<p class="limit"><i class="iconfont no-support-reason">&#xe699;</i>不支持15天无理由换货</p>
{{/isEqualOr}}
{{/if}}
<p class="row price-wrap">
{{!-- {{#if isVipPrice}}
... ...
... ... @@ -11,7 +11,8 @@ let $ = require('yoho-jquery'),
let tip = require('plugin/tip'),
loading = require('plugin/loading'),
order = require('./order-info'),
richTip = require('plugin/rich-tip');
richTip = require('plugin/rich-tip'),
dialog = require('plugin/dialog');
let $invoice = $('.invoice'),
$couponUse = $('.coupon-use.used'),
... ... @@ -529,3 +530,13 @@ $(window).scroll(function() {
$('.address-bottom').hide();
}
});
// 商品是否支持退换货原因弹框
$('.no-support-reason').click(function() {
dialog.showDialog({
dialogText: '该商品支持7天无理由退换,不支持7天以上15天内的无理由换货,如有疑问,请联系客服',
hasFooter: {
centerBtnText: '我知道了'
}
});
});
... ...
... ... @@ -456,6 +456,15 @@
display: block !important;
}
.limit {
color: #b6b6b6;
font-size: 80%;
}
.no-support-reason {
margin-right: 8px;
}
.price-wrap {
position: absolute;
top: 20px;
... ...
... ... @@ -195,6 +195,7 @@ function tranformPayment(data, orderInfo, cartType, skuList, orderComputeData) {
obj.count = good.buy_number;
obj.price = good.sales_price;
obj.isLimitSkn = good.is_limit_skn === 'Y';
obj.notSevenExchange = _.get(good, 'tags[0]', '');
if (good.goods_type === 'gift') {
obj.gift = true;
... ...