Commit 91e88fcb authored by pengguangpu's avatar pengguangpu

自动登录;添加onback事件回调;

parent dfdf1a77
...@@ -18,23 +18,27 @@ Page({ ...@@ -18,23 +18,27 @@ Page({
}, },
//回退到上一个页面 //回退到上一个页面
onBack(e) { events: {
my.ix.sendBuddyMessage({ onBack(e) {
// 填入目标小程序的 AppID console.log('onBack触发');
target: getApp().globalData.backScreenAppId, my.ix.sendBuddyMessage({
data: { // 填入目标小程序的 AppID
action: ACTION_BALANCE_BACK_GOODS, target: getApp().globalData.backScreenAppId,
data: null data: {
}, action: ACTION_BALANCE_BACK_GOODS,
success: (res) => { data: null
e.preventDefault(); },
}, success: (res) => {
fail: (res) => { e.preventDefault();
console.info(`sendBuddyMessage failed: ${JSON.stringify(res)}`); },
} fail: (res) => {
}); console.info(`sendBuddyMessage failed: ${JSON.stringify(res)}`);
}
});
}
}, },
onReady() { onReady() {
if (my.canIUse('hideBackHome')) { if (my.canIUse('hideBackHome')) {
my.hideBackHome(); my.hideBackHome();
......
...@@ -43,11 +43,11 @@ Page({ ...@@ -43,11 +43,11 @@ Page({
console.log("localLoginInfo==>" + JSON.stringify(localLoginInfo)); console.log("localLoginInfo==>" + JSON.stringify(localLoginInfo));
if (localLoginInfo.success != false && localLoginInfo.data != null) { if (localLoginInfo.success != false && localLoginInfo.data != null) {
//赋值 //赋值
// this.setData({ this.setData({
// name: localLoginInfo.data.name, name: localLoginInfo.data.name,
// password: localLoginInfo.data.password, password: localLoginInfo.data.password,
// sn: localLoginInfo.data.sn sn: localLoginInfo.data.sn
// }) })
} }
}, },
onNameClear() { onNameClear() {
......
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