3
0
Fork 0

fix(app): 临时登录判断数据类型修复

This commit is contained in:
woody 2025-09-04 16:11:02 +08:00
parent 9d5993337c
commit 987b2fffca
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export default {
]
if (whiteList.indexOf(options.path) !== -1) return
const isRegiestLogin = uni.getStorageSync('regiest-login')
if (isRegiestLogin === 1) {
if (isRegiestLogin) {
uni.removeStorageSync('regiest-login')
removeToken()
}