1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 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',
- });
- } else if (res.cancel) {
- // 老师:跳转到老师端小程序
- wx.navigateToMiniProgram({
- appId: 'wx06f2b1b09ac5684f', // ⚠️ 替换成实际 appId
- path: 'pages/logins/logins',
- });
- }
- }
- });
-
- return false;
- }
-
- return true;
- },
- onLaunch() {
- // wx.cloud.init({
- // env: 'cloud1-6g98iw7i28b01747',
- // traceUser: true
- // })
- }
- })
|