发布时间:2023-12-28 08:30
let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
let curRoute = routes[routes.length - 1].route // 获取当前页面路由,也就是最后一个打开的页面路由
(PS:- 2返回的是上个页面)
console.log('当前路由地址',curRoute)
//1.判断当前是否为登录页
if(curRoute != 'pages/login/uni_login'){
//2.判断userid是否为空/0
if(uni.getStorageSync('userId') =='' || uni.getStorageSync('userId') ==0){
}
}