12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import store from '../store'
- const whiteList = []
- function hasPermission(url) {
-
- if (whiteList.indexOf(url) !== -1 || store.state.user.loginInfo) {
- return true
- }
- return false
- }
- uni.addInterceptor('navigateTo', {
-
- invoke(e) {
- if (!hasPermission(e.url)) {
- uni.reLaunch({
- url: '/pages/login/login'
- })
- return false
- }
- return true
- },
- success(e) {
-
- }
- })
- uni.addInterceptor('switchTab', {
-
- invoke(e) {
- if (!hasPermission(e.url)) {
- uni.reLaunch({
- url: '/pages/login/login'
- })
- return false
- }
- return true
- },
- success(e) {
-
- }
- })
|