refactor(login): 重构登录注册页面和配置

- 合并平台特定登录页面到统一登录页面
- 重命名登录策略配置变量以更清晰表达意图
- 更新README文档说明登录策略变更
- 实现注册成功后的跳转逻辑
- 更新tabbar配置使用自定义样式
This commit is contained in:
feige996
2025-08-19 16:33:24 +08:00
parent ba8eaa1691
commit 25a8991991
9 changed files with 83 additions and 110 deletions

View File

@@ -7,7 +7,7 @@
import { useUserStore } from '@/store'
import { tabbarStore } from '@/tabbar/store'
import { getLastPage } from '@/utils'
import { EXCLUDE_LIST, LOGIN_PAGE_LIST } from '../login/config'
import { EXCLUDE_PAGE_LIST, LOGIN_PAGE_LIST } from '../login/config'
// 黑名单登录拦截器 - (适用于大部分页面不需要登录,少部分页面需要登录)
export const navigateToInterceptor = {
@@ -43,7 +43,7 @@ export const navigateToInterceptor = {
console.log('拦截器中得到的 path:', path, userStore.hasLogin)
if ([...EXCLUDE_LIST, ...LOGIN_PAGE_LIST].includes(path)) {
if (EXCLUDE_PAGE_LIST.includes(path)) {
console.log('111')
uni.navigateTo({ url: path })
return