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

@@ -15,7 +15,7 @@
}
},
"tabBar": {
"custom": false,
"custom": true,
"color": "#999999",
"selectedColor": "#018d71",
"backgroundColor": "#F8F8F8",
@@ -26,16 +26,16 @@
"spacing": "3px",
"list": [
{
"iconPath": "static/tabbar/home.png",
"selectedIconPath": "static/tabbar/homeHL.png",
"text": "首页",
"pagePath": "pages/index/index",
"text": "首页"
"iconType": "uniUi",
"icon": "home"
},
{
"iconPath": "static/tabbar/example.png",
"selectedIconPath": "static/tabbar/exampleHL.png",
"text": "关于",
"pagePath": "pages/about/about",
"text": "关于"
"iconType": "unocss",
"icon": "i-carbon-code"
}
]
},