You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
//只要是未登录状态,想要跳转到名单内的路径时,直接跳到登录页
|
|
// 页面白名单,不受拦截
|
|
const whiteList = [
|
|
// '/pages/login/index'
|
|
]
|
|
function hasPermission (url) {
|
|
let islogin = sessionStorage.getItem("isLogin");//在这可以使用token、vuex
|
|
islogin = Boolean(Number(islogin));//返回布尔值
|
|
// 在白名单中或有登录判断条件可以直接跳转
|
|
if(whiteList.indexOf(url) !== -1 || islogin) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
uni.addInterceptor('navigateTo', {
|
|
// 页面跳转前进行拦截, invoke根据返回值进行判断是否继续执行跳转
|
|
invoke (e) {
|
|
if(!hasPermission(e.url)){
|
|
uni.reLaunch({
|
|
url: '/pages/login/index'
|
|
})
|
|
return false
|
|
}
|
|
return true
|
|
},
|
|
success (e) {
|
|
}
|
|
})
|
|
|
|
uni.addInterceptor('switchTab', {
|
|
// tabbar页面跳转前进行拦截
|
|
invoke (e) {
|
|
if(!hasPermission(e.url)){
|
|
// uni.reLaunch({
|
|
// url: '/pages/login/index'
|
|
// })
|
|
return false
|
|
}
|
|
return true
|
|
},
|
|
success (e) {
|
|
}
|
|
})
|