Commit 5ba54567 by libai

ft活动上线

parent f1a06fe3
Showing with 30 additions and 1 deletions
......@@ -759,7 +759,36 @@
// sessionStorage.money = money;
// sessionStorage.rid = rid;
switch (sessionStorage.pay) {
case "ONLYPAY":
if (flag) {
$.ajax({
url: _url + "/pay/toOnlypay",
data: {
uid: localStorage.uid,
country: '86',
rid: sessionStorage.rid,
amount: sessionStorage.money,
returnUrl: _url4 + '/phonepay/paySuccess.html?lang=' + sessionStorage.lang,
failureUrl: _url4 + '/phonepay/payFail.html?lang=' + sessionStorage.lang,
firstName: sessionStorage.firstName || '',
lastName: sessionStorage.lastName || '',
email: sessionStorage.email || '',
phone: sessionStorage.phone || '',
product: "H5寶石儲值",
payType: sessionStorage.pay,
},
success: function (res) {
if (res.code == 1) {
window.location.href = res.url;
} else {
layer.msg(res.msg);
}
}
})
} else {
window.location.href = 'https://firefly.live/appPhonePay/phonepay/visaInfo.html?uid=' + localStorage.uid + '&lang=' + sessionStorage.lang + '&pay=' + sessionStorage.pay + '&money=' + sessionStorage.money + '&rid=' + sessionStorage.rid;
}
break;
case "PAYERMAX_PAY":
$.ajax({
url: _url + "/pay/toPayermax.html",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment