Authored by biao

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

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