Authored by biao

修复购物车编辑刷新后商品类型错误问题。code review by XWG

@@ -491,7 +491,9 @@ $yohoPage.on('touchstart', '.btn-minus', function() { @@ -491,7 +491,9 @@ $yohoPage.on('touchstart', '.btn-minus', function() {
491 491
492 //延迟刷新,否则面板可能无法隐藏 492 //延迟刷新,否则面板可能无法隐藏
493 setTimeout(function() { 493 setTimeout(function() {
494 - window.location.reload(); 494 +
  495 + //获取当前页面商品类型:普通商品/预售商品
  496 + window.location.href = '/cart/index/index?cartType=' + $('#cartType').val();
495 }, 1); 497 }, 1);
496 } 498 }
497 }).fail(function() { 499 }).fail(function() {