@@ -334,6 +334,10 @@
$.ajax(base_path+'/wechat/cart/orderPay', { // 提交订单,准备支付
data: dataArgs,
dataType: 'json',
+ xhrFields: {
+ withCredentials: true
+ },
+ crossDomain: true,
type: 'POST',
timeout: 15000,
success: function(dt) {
@@ -354,6 +358,10 @@
$.ajax(base_path+'/wechat/order/checkOrderPaySuccess', { // 校验订单状态
data: orderIds,
type: 'post',
@@ -374,7 +382,7 @@
} else {
isPay = true;
mui.alert("对不起,支付失败!请稍后重试!" + dt.data.orderId + "支付失败!");
- window.location.href = "order-details.html?orderId=" + dt.data.orderId; // 前往订单详情
+ //window.location.href = "order-details.html?orderId=" + dt.data.orderId; // 前往订单详情
}
});