qa-education-exam-weapp/app.js

17 lines
337 B
JavaScript
Raw Normal View History

2026-04-17 16:26:28 +08:00
App({
onLaunch() {
if (!this.globalData.userInfo.USER_ID) {
wx.reLaunch({
url: 'pages/login/login'
})
} else {
wx.switchTab({
url: '/pages/index/index'
})
}
},
globalData: {
userInfo: {}, // 用户信息
}
})