Authored by 刘传洋

m

... ... @@ -288,7 +288,6 @@ Cart = {
var $this = $(this);
var $item = $this.closest('li[data-role=pitem]');
var $btn = $item.find('.cart-item-check');
var item;
// var storagenum = $item.data('storagenum') ? $item.data('storagenum') * 1 : 0;
var countJSON = {};
... ... @@ -308,27 +307,9 @@ Cart = {
sku: $item.data('id')
}));
if (!$item.hasClass('active')) {
if (!$btn.hasClass('cart-item-checked') && $btn.data('tipnostore')) { // 无库存提示
toastNoStore($item);
$item.find('.cart-item-check').addClass('cart-item-checked');
return;
}
item = {
product_sku: $item.data('id'),
selected: $btn.hasClass('cart-item-checked') ? 'N' : 'Y',
buy_number: $item.data('productnum'),
goods_type: $item.data('goodstype'),
promotion_id: $item.data('promotionid') ? $item.data('promotionid') : 0
};
return capi.choiceOut(item);
} else {
return;
if (!$btn.hasClass('cart-item-checked')) {
$btn.click();
}
},
reAdd2Cart: function() {
... ...
... ... @@ -194,7 +194,7 @@ cartItemNumChg = (function() {
}
countBusy = true;
$.ajax({
return $.ajax({
type: 'POST',
dataType: 'json',
url: '/cart/cart/modifyNum',
... ...