Authored by 刘传洋

m

@@ -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
@@ -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',
@@ -145,7 +145,7 @@ @@ -145,7 +145,7 @@
145 .oldprice { 145 .oldprice {
146 display: block; 146 display: block;
147 color: #b0b0b0; 147 color: #b0b0b0;
148 - font-size: 12px; 148 + font-size: 13px;
149 font-weight: normal; 149 font-weight: normal;
150 height: 25px; 150 height: 25px;
151 line-height: 25px; 151 line-height: 25px;