|
@@ -287,6 +287,7 @@ Cart = { |
|
@@ -287,6 +287,7 @@ Cart = { |
287
|
modNum: function() {
|
287
|
modNum: function() {
|
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
|
|
291
|
|
291
|
// var storagenum = $item.data('storagenum') ? $item.data('storagenum') * 1 : 0;
|
292
|
// var storagenum = $item.data('storagenum') ? $item.data('storagenum') * 1 : 0;
|
292
|
var countJSON = {};
|
293
|
var countJSON = {};
|
|
@@ -305,6 +306,10 @@ Cart = { |
|
@@ -305,6 +306,10 @@ Cart = { |
305
|
capi.cartItemNumChg($.extend(countJSON, {
|
306
|
capi.cartItemNumChg($.extend(countJSON, {
|
306
|
sku: $item.data('id')
|
307
|
sku: $item.data('id')
|
307
|
}));
|
308
|
}));
|
|
|
309
|
+
|
|
|
310
|
+ if (!$btn.hasClass('cart-item-checked')) {
|
|
|
311
|
+ $btn.click();
|
|
|
312
|
+ }
|
308
|
},
|
313
|
},
|
309
|
reAdd2Cart: function() {
|
314
|
reAdd2Cart: function() {
|
310
|
|
315
|
|