Authored by 刘传洋

m

@@ -288,7 +288,6 @@ Cart = { @@ -288,7 +288,6 @@ Cart = {
288 var $this = $(this); 288 var $this = $(this);
289 var $item = $this.closest('li[data-role=pitem]'); 289 var $item = $this.closest('li[data-role=pitem]');
290 var $btn = $item.find('.cart-item-check'); 290 var $btn = $item.find('.cart-item-check');
291 - var item;  
292 291
293 // var storagenum = $item.data('storagenum') ? $item.data('storagenum') * 1 : 0; 292 // var storagenum = $item.data('storagenum') ? $item.data('storagenum') * 1 : 0;
294 var countJSON = {}; 293 var countJSON = {};
@@ -308,27 +307,9 @@ Cart = { @@ -308,27 +307,9 @@ Cart = {
308 sku: $item.data('id') 307 sku: $item.data('id')
309 })); 308 }));
310 309
311 - if (!$item.hasClass('active')) {  
312 - if (!$btn.hasClass('cart-item-checked') && $btn.data('tipnostore')) { // 无库存提示  
313 - toastNoStore($item);  
314 - $item.find('.cart-item-check').addClass('cart-item-checked');  
315 - return;  
316 - }  
317 -  
318 - item = {  
319 - product_sku: $item.data('id'),  
320 - selected: $btn.hasClass('cart-item-checked') ? 'N' : 'Y',  
321 - buy_number: $item.data('productnum'),  
322 - goods_type: $item.data('goodstype'),  
323 - promotion_id: $item.data('promotionid') ? $item.data('promotionid') : 0  
324 - };  
325 -  
326 - return capi.choiceOut(item);  
327 -  
328 - } else {  
329 - return; 310 + if (!$btn.hasClass('cart-item-checked')) {
  311 + $btn.click();
330 } 312 }
331 -  
332 }, 313 },
333 reAdd2Cart: function() { 314 reAdd2Cart: function() {
334 315
@@ -194,7 +194,7 @@ cartItemNumChg = (function() { @@ -194,7 +194,7 @@ cartItemNumChg = (function() {
194 } 194 }
195 195
196 countBusy = true; 196 countBusy = true;
197 - $.ajax({ 197 + return $.ajax({
198 type: 'POST', 198 type: 'POST',
199 dataType: 'json', 199 dataType: 'json',
200 url: '/cart/cart/modifyNum', 200 url: '/cart/cart/modifyNum',