Authored by Rock Zhang

Merge branch 'develop/wap' into beta/wap

@@ -477,8 +477,17 @@ $yohoPage.on('touchstart', '.btn-minus', function() { @@ -477,8 +477,17 @@ $yohoPage.on('touchstart', '.btn-minus', function() {
477 url = $('#limitProductPay').val() + '?limitproductcode=' + limitProductCode + '&sku=' + 477 url = $('#limitProductPay').val() + '?limitproductcode=' + limitProductCode + '&sku=' +
478 productSku + '&skn=' + skn + '&buy_number=' + buyNumber; 478 productSku + '&skn=' + skn + '&buy_number=' + buyNumber;
479 479
480 - //打开结算页面,结束函数执行。  
481 - window.location.href = url; 480 + // 调用接口判断商品是否可以购买
  481 + $.ajax({
  482 + url: url
  483 + }).then(function(res) {
  484 +
  485 + // 如果有错,则商品不可购买,执行页面刷新,否则跳到结算页面
  486 + res.error ? window.location.reload() : window.location.href = url;
  487 + }).fail(function() {
  488 + window.location.reload();
  489 + });
  490 +
482 return false; 491 return false;
483 492
484 } else { 493 } else {
@@ -307,7 +307,12 @@ class IndexController extends AbstractAction @@ -307,7 +307,12 @@ class IndexController extends AbstractAction
307 $this->go($order['cartUrl']); 307 $this->go($order['cartUrl']);
308 } 308 }
309 if (isset($order['error'])) { // 限购商品支付接口返回为空或错误时 309 if (isset($order['error'])) { // 限购商品支付接口返回为空或错误时
310 - $this->error(); 310 + if ($this->isAjax()) {
  311 + $this->echoJson($order);
  312 + return;
  313 + } else {
  314 + $this->error();
  315 + }
311 } 316 }
312 317
313 $data = array( 318 $data = array(