// app.js App({ globalData: { isLoggedIn: false, // 登录状态 }, // 检查登录状态并弹出提示框 checkLoginStatus() { const isLoggedIn = wx.getStorageSync('userInfo') || false; if (!isLoggedIn) { wx.showModal({ title: '绑定手机号', content: '防止账号丢失以及方便找回,建议您绑定手机号码', confirmText: '立即绑定', cancelText: '取消', success: (res) => { if (res.confirm) { // 跳转到绑定手机号页面 wx.navigateTo({ url: '/pages/logins/logins', }); } }, }); } return isLoggedIn; }, onLaunch() { // wx.cloud.init({ // env: 'cloud1-6g98iw7i28b01747', // traceUser: true // }) } })