Authored by Rock Zhang

Merge branch 'develop/wap' into beta/wap

... ... @@ -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 {
... ...
... ... @@ -307,8 +307,13 @@ class IndexController extends AbstractAction
$this->go($order['cartUrl']);
}
if (isset($order['error'])) { // 限购商品支付接口返回为空或错误时
if ($this->isAjax()) {
$this->echoJson($order);
return;
} else {
$this->error();
}
}
$data = array(
'orderEnsurePage' => true,
... ...