Authored by biao

增加限购商品购买可行性判断

... ... @@ -477,8 +477,17 @@ $yohoPage.on('touchstart', '.btn-minus', function() {
url = $('#limitProductPay').val() + '?limitproductcode=' + limitProductCode + '&sku=' +
productSku + '&skn=' + skn + '&buy_number=' + buyNumber;
//打开结算页面,结束函数执行。
window.location.href = url;
// 调用接口判断商品是否可以购买
$.ajax({
url: url
}).then(function(res) {
// 如果有错,则商品不可购买,执行页面刷新,否则跳到结算页面
res.error ? window.location.reload() : window.location.href = url;
}).fail(function() {
window.location.reload();
});
return false;
} else {
... ...