feat: 路由拦截全部加上

This commit is contained in:
Burt 2024-12-31 12:18:17 +08:00
parent e1da7afd58
commit c47eb87132

View File

@ -5,7 +5,7 @@
* 便使 * 便使
*/ */
import { useUserStore } from '@/store' import { useUserStore } from '@/store'
import { getNeedLoginPages, needLoginPages as _needLoginPages } from '@/utils' import { needLoginPages as _needLoginPages, getNeedLoginPages } from '@/utils'
// TODO Check // TODO Check
const loginRoute = '/pages/login/index' const loginRoute = '/pages/login/index'
@ -49,5 +49,7 @@ export const routeInterceptor = {
uni.addInterceptor('navigateTo', navigateToInterceptor) uni.addInterceptor('navigateTo', navigateToInterceptor)
uni.addInterceptor('reLaunch', navigateToInterceptor) uni.addInterceptor('reLaunch', navigateToInterceptor)
uni.addInterceptor('redirectTo', navigateToInterceptor) uni.addInterceptor('redirectTo', navigateToInterceptor)
uni.addInterceptor('navigateBack', navigateToInterceptor)
uni.addInterceptor('switchTab', navigateToInterceptor)
}, },
} }