common.js
2.7 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
53
54
55
56
57
58
59
60
61
62
63
64
65
$(function () {
if ($('.carousel').length > 0) {
$('.carousel').carousel({
interval: 5000 //changes the speed
});
}
if ($(".btn-experience").length > 0) {
$(".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;
if (typeof data.status != 'undefined') {
var status = data.status;
if (status == 'SUCCESS' || status == 'TRADE_SUCCESS') {
$(".scanpay-qrcode .paid").removeClass("hidden");
$(".scanpay-tips p").html("支付成功!<br><span>3</span>秒后将自动跳转...");
var sin = setInterval(function () {
$(".scanpay-tips p span").text(parseInt($(".scanpay-tips p span").text()) - 1);
}, 1000);
setTimeout(function () {
clearInterval(sin);
location.href = queryParams.returnurl;
}, 3000);
clearInterval(si);
} else if (status == 'REFUND' || status == 'TRADE_CLOSED') {
$(".scanpay-tips p").html("请求失败!<br>请返回重新发起支付");
clearInterval(si);
} else if (status == 'NOTPAY' || status == 'TRADE_NOT_EXIST') {
} else if (status == 'CLOSED' || status == 'TRADE_CLOSED') {
$(".scanpay-tips p").html("订单已关闭!<br>请返回重新发起支付");
clearInterval(si);
} else if (status == 'USERPAYING' || status == 'WAIT_BUYER_PAY') {
} else if (status == 'PAYERROR') {
clearInterval(si);
}
}
}
}
});
};
si = setInterval(function () {
queryResult();
}, 3000);
queryResult();
}
});