Authored by 郝肖肖

选择运费,有货币则默认为0,选中状态为取消

@@ -326,8 +326,11 @@ if (!orderInfo('addressId')) { @@ -326,8 +326,11 @@ if (!orderInfo('addressId')) {
326 326
327 $('.delivery-id').on('touchend', 'li', function() { 327 $('.delivery-id').on('touchend', 'li', function() {
328 orderInfo('deliveryId', $(this).data('id')); 328 orderInfo('deliveryId', $(this).data('id'));
  329 +
329 //实付金额发生变化,使用有货币为0 330 //实付金额发生变化,使用有货币为0
330 orderInfo('yohoCoin', 0); 331 orderInfo('yohoCoin', 0);
  332 + $('.coin').find('.checkbox').removeClass('icon-cb-radio').addClass('icon-radio');
  333 +
331 orderCompute(); 334 orderCompute();
332 }); 335 });
333 336