Files
happy-life-star/mini-program/src/pages.json
T
peanut 60c63850ee feat: 修复 Redis 超时问题、固定小程序端口、新增人生事件模块及优化多个页面
- 修复 Redis 超时:添加 commons-pool2 依赖,启用 Lettuce 连接池,超时提升至 15s
- 固定 mini-program H5 端口为 5175,避免与 web 项目端口冲突
- 新增人生事件(life-event)模块:表单和详情页面
- 新增 EpicScript 灵感接口(Controller/Service/DTO)
- 优化登录、引导、主页、记录、剧本详情等多个页面
- 优化服务管理脚本和 Nginx 配置

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 11:38:35 +08:00

71 lines
1.3 KiB
JSON

{
"pages": [
{
"path": "pages/splash/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/login/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/onboarding/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/main/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/main/ScriptDetailView",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "剧本详情"
}
},
{
"path": "pages/main/PathView",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "实现路径"
}
},
{
"path": "pages/life-event/form",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "记录人生经历"
}
},
{
"path": "pages/life-event/detail",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "人生事件"
}
},
{
"path": "pages/profile/index",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "个人中心"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "人生OS",
"navigationBarBackgroundColor": "#0F071A",
"backgroundColor": "#0F071A"
},
"uniIdRouter": {}
}