const app = getApp(); Page({ data: {}, onLoad() { app.waitLogin().then(() => { wx.reLaunch({ url: "/pages/home/index", }); }); }, }); export {};