登录页不判断用户登录跳转首页逻辑

This commit is contained in:
qiaomu 2024-05-30 16:40:24 +08:00
parent 8f83197c02
commit 7ac104d1b8

View File

@ -20,19 +20,19 @@ Page({
* 生命周期函数--监听页面加载
*/
onLoad() {
const user = wx.getStorageSync('user')
if (!user || !user.id) {
return;
}
// const user = wx.getStorageSync('user')
// if (!user || !user.id) {
// return;
// }
// if (user.status === 0 || user.status === 2) {
// wx.redirectTo({
// url: '/pages/waitApprove/index',
// })
// return
// }
wx.switchTab({
url: '/pages/home/index',
})
// wx.switchTab({
// url: '/pages/home/index',
// })
},
/**