Commit 050c3ecf by agan

修改

parent d1a9c9be
...@@ -96,6 +96,7 @@ ...@@ -96,6 +96,7 @@
payType: sessionStorage.pay, payType: sessionStorage.pay,
}, },
success: function (res) { success: function (res) {
var res = JSON.parse(result);
if (res.code == 1) { if (res.code == 1) {
window.location.href = res.url; window.location.href = res.url;
} else { } else {
......
...@@ -96,6 +96,7 @@ ...@@ -96,6 +96,7 @@
payType: sessionStorage.pay, payType: sessionStorage.pay,
}, },
success: function (res) { success: function (res) {
var res = JSON.parse(result);
if (res.code == 1) { if (res.code == 1) {
window.location.href = res.url; window.location.href = res.url;
} else { } else {
......
...@@ -95,7 +95,8 @@ ...@@ -95,7 +95,8 @@
product: langList[langType].text53, product: langList[langType].text53,
payType: sessionStorage.pay, payType: sessionStorage.pay,
}, },
success: function (res) { success: function (result) {
var res = JSON.parse(result);
if (res.code == 1) { if (res.code == 1) {
window.location.href = res.url; window.location.href = res.url;
} else { } else {
......
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