Commit 91e88fcb authored by pengguangpu's avatar pengguangpu

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

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