31e504a997
- 在 onboarding 页面中新增使用模式选择功能,用户可选择“戒烟打卡”或“记录抽烟”模式 - 更新个人资料页面以显示当前模式并允许用户切换模式 - 在 pages.json 中注册新的模式选择页面 - 优化首页和其他相关页面以适应新模式功能
112 lines
2.2 KiB
JSON
112 lines
2.2 KiB
JSON
{
|
|
"easycom": {
|
|
"autoscan": true,
|
|
"custom": {
|
|
"^smoke-record-dialog$": "@/components/smoke-record-dialog/smoke-record-dialog.vue"
|
|
}
|
|
},
|
|
"pages": [
|
|
{
|
|
"path": "pages/mode-select/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/stats/index",
|
|
"style": {
|
|
"navigationBarTitleText": "数据统计分析"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/ai/index",
|
|
"style": {
|
|
"navigationBarTitleText": "AI 建议"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/ai_summary/index",
|
|
"style": {
|
|
"navigationBarTitleText": "AI 总结"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/logs/index",
|
|
"style": {
|
|
"navigationBarTitleText": "历史记录"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/share/index",
|
|
"style": {
|
|
"navigationBarTitleText": "戒烟分享"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/profile/index",
|
|
"style": {
|
|
"navigationBarTitleText": "个人中心"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/quit-plan/index",
|
|
"style": {
|
|
"navigationBarTitleText": "戒烟计划"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/onboarding/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "戒烟助手",
|
|
"navigationBarBackgroundColor": "#F0FDF4",
|
|
"backgroundColor": "#F0FDF4",
|
|
"backgroundColorTop": "#D1FAE5",
|
|
"backgroundColorBottom": "#FFFFFF"
|
|
},
|
|
"tabBar": {
|
|
"color": "#9CA3AF",
|
|
"selectedColor": "#10B981",
|
|
"backgroundColor": "#FFFFFF",
|
|
"borderStyle": "white",
|
|
"list": [
|
|
{
|
|
"pagePath": "pages/index/index",
|
|
"text": "首页",
|
|
"iconPath": "static/icons/home.png",
|
|
"selectedIconPath": "static/icons/home-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/stats/index",
|
|
"text": "统计",
|
|
"iconPath": "static/icons/stats.png",
|
|
"selectedIconPath": "static/icons/stats-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/logs/index",
|
|
"text": "记录",
|
|
"iconPath": "static/icons/logs.png",
|
|
"selectedIconPath": "static/icons/logs-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/profile/index",
|
|
"text": "我的",
|
|
"iconPath": "static/icons/profile.png",
|
|
"selectedIconPath": "static/icons/profile-active.png"
|
|
}
|
|
]
|
|
},
|
|
"uniIdRouter": {}
|
|
}
|