Authored by 郝肖肖

送货时间 提示语

... ... @@ -394,6 +394,11 @@ $('.dispatch').on('touchend', 'h3', function() {
});
$subBlock.on('touchstart', 'li', function() {
//送货时间提示语li,不响应事件
if ($(this).hasClass('dispatch-time-info')) {
return true;
}
$.each($(this).parents('ul').find('i'), function() {
$(this).parents('ul').find('i').removeClass('icon-cb-radio').addClass('icon-radio');
});
... ...
... ... @@ -176,6 +176,12 @@
&:last-child{
border-bottom:none;
}
&:first-child{
line-height: 30px;
padding: 20px 0;
font-size: 20px;
}
}
}
}
... ...
... ... @@ -66,6 +66,7 @@
<i class="iconfont hide up">&#xe615;</i>
</h3>
<ul>
<li class="dispatch-time-info">快递公司会尽力按您选择的送货时间配送,如遇特殊情况(天气、环境等)无法按您要求时间配送,还请您谅解。</li>
{{#each dispatchTime}}
<li {{#if isSelected}}class="chosed"{{/if}} data-id="{{id}}">
<span>{{name}}</span>
... ...