...
|
...
|
@@ -132,7 +132,7 @@ function orderCompute() { |
|
|
if ($.type(res) !== 'object') {
|
|
|
window.location.reload();
|
|
|
} else {
|
|
|
if (res.last_order_amount) {
|
|
|
if (typeof res.last_order_amount !== undefined) {
|
|
|
res.last_order_amount = (+res.last_order_amount).toFixed(2);
|
|
|
}
|
|
|
if (res.use_yoho_coin) {
|
...
|
...
|
@@ -320,6 +320,8 @@ $subBlock.on('touchstart', 'li', function() { |
|
|
$(this).parents('ul').find('i').removeClass('icon-cb-radio').addClass('icon-radio');
|
|
|
});
|
|
|
$(this).parents('ul').hide();
|
|
|
$('.down').removeClass('hide');
|
|
|
$('.up').addClass('hide');
|
|
|
$('.dispatch h3').removeClass('border-none');
|
|
|
dispatchInfo = $(this).find('span').html();
|
|
|
$(this).parents('.sub-block').find('h3 span').html(dispatchInfo);
|
...
|
...
|
|