...
|
...
|
@@ -9,23 +9,76 @@ var $ = require('jquery'), |
|
|
Hammer = require('yoho.hammer');
|
|
|
|
|
|
var chosePanel = require('./chose-panel'),
|
|
|
dialog = require('../me/dialog'),
|
|
|
tip = require('../plugin/tip');
|
|
|
|
|
|
var $cartContent = $('.cart-content');
|
|
|
var $cartContent = $('.cart-content'),
|
|
|
cartType = $('#cartType').val(),
|
|
|
hasShowCartPresellTip = false;
|
|
|
|
|
|
var navHammer,
|
|
|
advanceBuyHammer,
|
|
|
freebieHammer,
|
|
|
cartType = $('#cartType').val();
|
|
|
freebieHammer;
|
|
|
|
|
|
var hasChecked = $('.cart-content:not(.hide) .icon-cb-checked').length > 0 ? true : false; //是否有选中商品
|
|
|
|
|
|
function shouldSelectGift() {
|
|
|
var $freebie = $('.freebie');
|
|
|
|
|
|
if ($freebie.length <= 0) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
function shouldLowStocks() {
|
|
|
var $lowStocks = $('.low-stocks'),
|
|
|
result = false;
|
|
|
|
|
|
if ($lowStocks.length <= 0) {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
$lowStocks.each(function(idx, item) {
|
|
|
if ($(item).parent().parent().parent().siblings('.checkbox').hasClass('icon-cb-checked')) {
|
|
|
result = true;
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
function showChooseGifDialog() {
|
|
|
dialog.showDialog({
|
|
|
dialogText: '您还未选择赠品,是否去选择赠品',
|
|
|
hasFooter: {
|
|
|
leftBtnText: '我不要赠品',
|
|
|
rightBtnText: '去选择'
|
|
|
}
|
|
|
}, function() {
|
|
|
window.location.href = $('.freebie').find('a').attr('href');
|
|
|
}, function() {
|
|
|
window.location.href = '/cart/index/orderEnsure?cartType=' + cartType;
|
|
|
});
|
|
|
}
|
|
|
|
|
|
require('./good');
|
|
|
|
|
|
lazyLoad($('img.lazy'));
|
|
|
|
|
|
if (typeof window.cookie === 'function' && 'y' === window.cookie('_hasShowCartPresellTip')) {
|
|
|
$('#presell-tip').removeClass('show').addClass('hide');
|
|
|
hasShowCartPresellTip = true;
|
|
|
} else {
|
|
|
$('#presell-tip').removeClass('hide').addClass('show');
|
|
|
}
|
|
|
|
|
|
if ('advance' === cartType) {
|
|
|
$cartContent.toggleClass('hide');
|
|
|
$('presell-cart-nav').addClass('active');
|
|
|
$('common-cart-nav').removeClass('active');
|
|
|
}
|
|
|
|
|
|
if ($('.cart-nav').length > 0) {
|
...
|
...
|
@@ -39,8 +92,10 @@ if ($('.cart-nav').length > 0) { |
|
|
|
|
|
if (cartType === 'ordinary') {
|
|
|
cartType = 'advance';
|
|
|
$('#cartType').val('advance');
|
|
|
} else {
|
|
|
cartType = 'ordinary';
|
|
|
$('#cartType').val('ordinary');
|
|
|
}
|
|
|
|
|
|
$this.siblings('.active').removeClass('active');
|
...
|
...
|
@@ -55,9 +110,12 @@ if ($('.cart-nav').length > 0) { |
|
|
$(window).trigger('scroll');
|
|
|
});
|
|
|
|
|
|
setTimeout(function() {
|
|
|
$('#presell-tip').addClass('hide');
|
|
|
}, 3000);
|
|
|
if (!hasShowCartPresellTip) {
|
|
|
setTimeout(function() {
|
|
|
$('#presell-tip').removeClass('show').addClass('hide');
|
|
|
window.setCookie('_hasShowCartPresellTip', 'y');
|
|
|
}, 3000);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if ($('.advance-buy').length > 0) {
|
...
|
...
|
@@ -74,16 +132,12 @@ if ($('.freebie').length > 0) { |
|
|
});
|
|
|
}
|
|
|
|
|
|
//$('.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) {
|
|
|
if (shouldSelectGift()) {
|
|
|
showChooseGifDialog();
|
|
|
return false;
|
|
|
}
|
|
|
if (shouldLowStocks()) {
|
|
|
tip.show('库存不足无法结算');
|
|
|
return false;
|
|
|
}
|
...
|
...
|
@@ -99,7 +153,7 @@ $('.chose').on('touchend', function() { |
|
|
chosePanel.show();
|
|
|
});
|
|
|
|
|
|
if ($('.cart-zero').length > 0) {
|
|
|
if ($('.shopping-cart-good').length <= 0) {
|
|
|
require('../product/recommend-for-you');
|
|
|
}
|
|
|
|
...
|
...
|
|