...
|
...
|
@@ -61,6 +61,15 @@ let cartObj = { |
|
|
window.location.href = '/cart/index/new/gift?cartType=' + cartType;
|
|
|
}
|
|
|
});
|
|
|
if (typeof window.cookie === 'function' && window.cookie('_hasShowCartPresellTip') === 'y') {
|
|
|
$('#presell-tip').removeClass('show').addClass('hide');
|
|
|
} else {
|
|
|
$('#presell-tip').removeClass('hide').addClass('show');
|
|
|
setTimeout(function() {
|
|
|
$('#presell-tip').removeClass('show').addClass('hide');
|
|
|
window.setCookie('_hasShowCartPresellTip', 'y');
|
|
|
}, 3000);
|
|
|
}
|
|
|
},
|
|
|
toBalance() {
|
|
|
let cartType = window.cookie('cartType') || 'ordinary';
|
...
|
...
|
|