Authored by htoooth

fix

... ... @@ -171,6 +171,8 @@
</div>
<input type="hidden" id="order-code" value="{{orderCode}}">
{{/ exchange}}
{{# refund}}
<div class="return-prompt">
退货须知:<br>
... ... @@ -219,8 +221,23 @@
<a href="{{href}}">{{name}}</a>
<span>颜色:{{color}} 尺码:{{size}}</span>
{{#if specialNoticeBo}}
<div class="special-tip">
<span>{{specialNoticeBo.title}} <i class="doubt"></i></span>
<div>
<div class="special-tip">
{{#if specialNoticeBo.limit7Day}}
<p class="special-limit-7day">不支持7天无理由退换</p>
<div class="special-limit-tip special-limit-7day-box hide">
该商品不支持7天无理由退换货,如有疑问,请联系客服!
</div>
{{/if}}
{{#if specialNoticeBo.limit15Day}}
<p class="special-limit-7day">不支持15天无理由退换</p>
<div class="special-limit-tip special-limit-15day-box hide">
该商品支持7天无理由退换,不支持7天以上15天内的无理由换货,如有疑问,请联系客服!
</div>
{{/if}}
</div>
<div class="special-content">
<span>{{specialNoticeBo.remark1}}<br/>{{specialNoticeBo.remark2}}</span>
<i class="arrow"></i>
... ...
... ... @@ -659,10 +659,8 @@ refund = {
this.eventBind();
},
eventBind: function() {
var self = this;
this.$el.on('click', '.special-limit-7day', function() {
self.$el.find('.special-limit-tip').toggleClass('hide');
$(this).parent().find('.special-limit-tip').toggleClass('hide');
});
}
};
... ...
... ... @@ -694,10 +694,8 @@ refund = {
this.eventBind();
},
eventBind: function() {
var self = this;
this.$el.find('.special-limit-7day').on('click', function() {
self.$el.find('.special-limit-tip').toggleClass('hide');
$(this).parent().find('.special-limit-tip').toggleClass('hide');
});
}
};
... ...