Commit 40dea23e authored by jiangjiantao's avatar jiangjiantao

bugfix

parent 7044c0dd
...@@ -65,15 +65,15 @@ Page({ ...@@ -65,15 +65,15 @@ Page({
action: ACTION_DIRECT_PAYMENT, action: ACTION_DIRECT_PAYMENT,
data: res.data data: res.data
}, },
success: (res) => { success: (sres) => {
console.log("通知后屏小程序跳转到结算页面 成功 ===》" + JSON.stringify(res)); console.log("通知后屏小程序跳转到结算页面 成功 ===》" + JSON.stringify(sres));
//去结算页面 //去结算页面
my.reLaunch({ my.reLaunch({
url: "/pages/balance/balance?totalPrice=" + res.data + "&totalQuantity=0&totalDisc=0", url: "/pages/balance/balance?totalPrice=" + res.data + "&totalQuantity=0&totalDisc=0",
}); });
}, },
fail: (res) => { fail: (fres) => {
console.log("通知后屏小程序跳转到结算页面 失败 ===》 " + JSON.stringify(res)); console.log("通知后屏小程序跳转到结算页面 失败 ===》 " + JSON.stringify(fres));
} }
}) })
} }
......
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 to comment