common.js
2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
$(function () {
$('.carousel').carousel({
interval: 5000 //changes the speed
});
$(".btn-experience").on("click", function () {
location.href = "/addons/epay/index/experience?amount=" + $("input[name=amount]").val() + "&type=" + $(this).data("type") + "&method=" + $("#method").val();
});
var si, xhr;
if (typeof queryParams != 'undefined') {
var queryResult = function () {
xhr && xhr.abort();
xhr = $.ajax({
url: "",
type: "post",
data: queryParams,
dataType: 'json',
success: function (ret) {
if (ret.code == 1) {
var data = ret.data;
console.log(data);
if (typeof data.trade_state != 'undefined') {
if (data.trade_state == 'SUCCESS') {
$(".wechat-qrcode .paid").removeClass("hidden");
$(".wechat-tips p").html("支付成功!<br>3秒后将自动跳转...");
setTimeout(function () {
location.href = queryParams.return_url;
}, 3000);
clearInterval(si);
} else if (data.trade_state == 'REFUND') {
$(".wechat-tips p").html("请求失败!<br>请返回重新发起支付");
clearInterval(si);
} else if (data.trade_state == 'NOTPAY') {
} else if (data.trade_state == 'CLOSED') {
$(".wechat-tips p").html("订单已关闭!<br>请返回重新发起支付");
clearInterval(si);
} else if (data.trade_state == 'USERPAYING') {
} else if (data.trade_state == 'PAYERROR') {
clearInterval(si);
}
}
}
}
});
};
si = setInterval(function () {
queryResult();
}, 3000);
queryResult();
}
});