...
|
...
|
@@ -14,6 +14,8 @@ var chosePanel = require('./chose-panel'), |
|
|
var $cartContent = $('.cart-content');
|
|
|
|
|
|
var navHammer,
|
|
|
advanceBuyHammer,
|
|
|
freebieHammer,
|
|
|
cartType = $('#cartType').val();
|
|
|
|
|
|
var hasChecked = $('.cart-content:not(.hide) .icon-cb-checked').length > 0 ? true : false; //是否有选中商品
|
...
|
...
|
@@ -56,13 +58,27 @@ if ($('.cart-nav').length > 0) { |
|
|
}, 3000);
|
|
|
}
|
|
|
|
|
|
$('.advance-buy').on('touchend', function() {
|
|
|
window.location.href = '/cart/index/advanceBuy?cartType=' + cartType;
|
|
|
});
|
|
|
if ($('.advance-buy').length > 0) {
|
|
|
advanceBuyHammer = new Hammer(document.getElementsByClassName('advance-buy')[0]);
|
|
|
advanceBuyHammer.on('tap', function(e) {
|
|
|
window.location.href = '/cart/index/advanceBuy?cartType=' + cartType;
|
|
|
});
|
|
|
}
|
|
|
|
|
|
$('.freebie').on('touchend', function() {
|
|
|
window.location.href = '/cart/index/gift?cartType=' + cartType;
|
|
|
});
|
|
|
if ($('.freebie').length > 0) {
|
|
|
freebieHammer = new Hammer(document.getElementsByClassName('freebie')[0]);
|
|
|
freebieHammer.on('tap', function(e) {
|
|
|
window.location.href = '/cart/index/gift?cartType=' + cartType;
|
|
|
});
|
|
|
}
|
|
|
|
|
|
//$('.advance-buy').on('touchend', function() {
|
|
|
// window.location.href = '/cart/index/advanceBuy?cartType=' + cartType;
|
|
|
//});
|
|
|
//
|
|
|
//$('.freebie').on('touchend', function() {
|
|
|
// window.location.href = '/cart/index/gift?cartType=' + cartType;
|
|
|
//});
|
|
|
|
|
|
$('.btn-balance').on('touchend', function() {
|
|
|
if ($('.low-stocks').length > 0) {
|
...
|
...
|
@@ -78,8 +94,6 @@ $('.btn-balance').on('touchend', function() { |
|
|
});
|
|
|
|
|
|
$('.chose').on('touchend', function() {
|
|
|
|
|
|
//var id = $(this).closest('.gift-advance-good').data('id');
|
|
|
chosePanel.show();
|
|
|
});
|
|
|
|
...
|
...
|
|