Authored by 郭成尧

slow

... ... @@ -362,7 +362,7 @@ if (!orderInfo('addressId')) {
$('.delivery-id').on('touchend', 'li', function() {
orderInfo('deliveryId', $(this).data('id'));
//实付金额发生变化,使用有货币为0
// 实付金额发生变化,使用有货币为0
orderInfo('yohoCoin', 0);
$('.coin').find('.checkbox').removeClass('icon-cb-radio').addClass('icon-radio');
... ... @@ -462,7 +462,7 @@ $('.dispatch').on('touchend', 'h3', function() {
});
$subBlock.on('touchstart', 'li', function() {
//送货时间提示语li,不响应事件
// 送货时间提示语li,不响应事件
if ($(this).hasClass('dispatch-time-info')) {
return true;
}
... ... @@ -470,7 +470,12 @@ $subBlock.on('touchstart', 'li', function() {
$.each($(this).parents('ul').find('i'), function() {
$(this).parents('ul').find('i').removeClass('icon-cb-radio').addClass('icon-radio');
});
$(this).parents('ul').hide();
let self = $(this);
setTimeout(function() {
self.parents('ul').hide();
}, 300);
$('.down').removeClass('hide');
$('.up').addClass('hide');
$('.dispatch h3').removeClass('border-none');
... ...