fix(router): 修正变量名LOGIN_PAGE_ENABLE_IN_WP为LOGIN_PAGE_ENABLE_IN_MP

修复变量名拼写错误,将WP改为MP以准确表示小程序(mini program)场景
This commit is contained in:
feige996
2025-09-06 21:30:09 +08:00
parent 4b8f7ca0c4
commit 657ed31077
4 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ import { isMp } from '@uni-helper/uni-env'
import { useTokenStore } from '@/store/token'
import { isPageTabbar, tabbarStore } from '@/tabbar/store'
import { getAllPages, getLastPage, HOME_PAGE, parseUrlToObj } from '@/utils/index'
import { EXCLUDE_LOGIN_PATH_LIST, isNeedLoginMode, LOGIN_PAGE, LOGIN_PAGE_ENABLE_IN_WP } from './config'
import { EXCLUDE_LOGIN_PATH_LIST, isNeedLoginMode, LOGIN_PAGE, LOGIN_PAGE_ENABLE_IN_MP } from './config'
export const FG_LOG_ENABLE = false
export function judgeIsExcludePath(path: string) {
@@ -47,7 +47,7 @@ export const navigateToInterceptor = {
tabbarStore.setAutoCurIdx(path)
// 小程序里面使用平台自带的登录,则不走下面的逻辑
if (isMp && LOGIN_PAGE_ENABLE_IN_WP) {
if (isMp && LOGIN_PAGE_ENABLE_IN_MP) {
return true // 明确表示允许路由继续执行
}