Authored by 郭成尧

slow

@@ -362,7 +362,7 @@ if (!orderInfo('addressId')) { @@ -362,7 +362,7 @@ if (!orderInfo('addressId')) {
362 $('.delivery-id').on('touchend', 'li', function() { 362 $('.delivery-id').on('touchend', 'li', function() {
363 orderInfo('deliveryId', $(this).data('id')); 363 orderInfo('deliveryId', $(this).data('id'));
364 364
365 - //实付金额发生变化,使用有货币为0 365 + // 实付金额发生变化,使用有货币为0
366 orderInfo('yohoCoin', 0); 366 orderInfo('yohoCoin', 0);
367 $('.coin').find('.checkbox').removeClass('icon-cb-radio').addClass('icon-radio'); 367 $('.coin').find('.checkbox').removeClass('icon-cb-radio').addClass('icon-radio');
368 368
@@ -462,7 +462,7 @@ $('.dispatch').on('touchend', 'h3', function() { @@ -462,7 +462,7 @@ $('.dispatch').on('touchend', 'h3', function() {
462 }); 462 });
463 463
464 $subBlock.on('touchstart', 'li', function() { 464 $subBlock.on('touchstart', 'li', function() {
465 - //送货时间提示语li,不响应事件 465 + // 送货时间提示语li,不响应事件
466 if ($(this).hasClass('dispatch-time-info')) { 466 if ($(this).hasClass('dispatch-time-info')) {
467 return true; 467 return true;
468 } 468 }
@@ -470,7 +470,12 @@ $subBlock.on('touchstart', 'li', function() { @@ -470,7 +470,12 @@ $subBlock.on('touchstart', 'li', function() {
470 $.each($(this).parents('ul').find('i'), function() { 470 $.each($(this).parents('ul').find('i'), function() {
471 $(this).parents('ul').find('i').removeClass('icon-cb-radio').addClass('icon-radio'); 471 $(this).parents('ul').find('i').removeClass('icon-cb-radio').addClass('icon-radio');
472 }); 472 });
473 - $(this).parents('ul').hide(); 473 + let self = $(this);
  474 +
  475 + setTimeout(function() {
  476 + self.parents('ul').hide();
  477 + }, 300);
  478 +
474 $('.down').removeClass('hide'); 479 $('.down').removeClass('hide');
475 $('.up').addClass('hide'); 480 $('.up').addClass('hide');
476 $('.dispatch h3').removeClass('border-none'); 481 $('.dispatch h3').removeClass('border-none');