Files
lunar-mini/mini/app.json
T
gouki 87f5fa2478
Publish Mini Program Dev Version / publish (push) Successful in 1m8s
refactor(mini): 个人中心改为登录+二级菜单结构
- 个人中心仅保留登录管理、我的数据/功能菜单与关于信息
- 新增偏好设置二级页 preferences(原偏好设置统一收敛至此)
- 新增我的收藏二级页 bookmarks,支持删除与跳转日详情
- 生辰管理拆分为二级页 birth-profiles,未登录时提示引导登录
- 八字页入口改为直达生辰管理页;修复 fortune 非 tabBar 页误用 switchTab
2026-08-10 11:52:15 +00:00

72 lines
1.9 KiB
JSON

{
"pages": [
"pages/home/home",
"pages/calendar/calendar",
"pages/day-detail/day-detail",
"pages/bazi/bazi",
"pages/fortune/fortune",
"pages/divination/divination",
"pages/solar-terms/solar-terms",
"pages/settings/settings",
"pages/preferences/preferences",
"pages/bookmarks/bookmarks",
"pages/birth-profiles/birth-profiles",
"pages/wish-tree/wish-tree",
"pages/wish-detail/wish-detail",
"pages/wiki/wiki"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#C41E3A",
"navigationBarTitleText": "老黄历",
"navigationBarTextStyle": "white",
"backgroundColor": "#FFFBF5"
},
"tabBar": {
"color": "#9E8E7E",
"selectedColor": "#C41E3A",
"backgroundColor": "#FFFFFF",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/home/home",
"text": "老黄历",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-active.png"
},
{
"pagePath": "pages/wish-tree/wish-tree",
"text": "许愿",
"iconPath": "images/wish.png",
"selectedIconPath": "images/wish-active.png"
},
{
"pagePath": "pages/bazi/bazi",
"text": "八字",
"iconPath": "images/bazi.png",
"selectedIconPath": "images/bazi-active.png"
},
{
"pagePath": "pages/wiki/wiki",
"text": "百科",
"iconPath": "images/wiki.png",
"selectedIconPath": "images/wiki-active.png"
},
{
"pagePath": "pages/settings/settings",
"text": "我的",
"iconPath": "images/me.png",
"selectedIconPath": "images/me-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"permission": {
"scope.record": {
"desc": "用于许愿树吹风互动效果"
}
}
}