- 新增许愿树页面(Canvas绘制、许愿条展示) - 新增许愿详情页面 - 新增许愿创建弹窗(免费/付费两种模式) - 新增网络请求封装 utils/request.js - 新增Go后端项目结构(Gin + Inertia.js) - 新增用户、订单、许愿数据模型 - 新增数据库迁移脚本 - 更新.gitignore补全忽略规则 - 更新.env.local配置(robot=2, 版本1.0.1) - 添加secrets目录说明文档
69 lines
1.9 KiB
JSON
69 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/wish-tree/wish-tree",
|
|
"pages/wish-detail/wish-detail"
|
|
],
|
|
"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/calendar/calendar",
|
|
"text": "日历",
|
|
"iconPath": "images/calendar.png",
|
|
"selectedIconPath": "images/calendar-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/bazi/bazi",
|
|
"text": "八字",
|
|
"iconPath": "images/bazi.png",
|
|
"selectedIconPath": "images/bazi-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/fortune/fortune",
|
|
"text": "运势",
|
|
"iconPath": "images/fortune.png",
|
|
"selectedIconPath": "images/fortune-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/wish-tree/wish-tree",
|
|
"text": "许愿",
|
|
"iconPath": "images/wish.png",
|
|
"selectedIconPath": "images/wish-active.png"
|
|
},
|
|
{
|
|
"pagePath": "pages/settings/settings",
|
|
"text": "设置",
|
|
"iconPath": "images/settings.png",
|
|
"selectedIconPath": "images/settings-active.png"
|
|
}
|
|
]
|
|
},
|
|
"style": "v2",
|
|
"sitemapLocation": "sitemap.json",
|
|
"lazyCodeLoading": "requiredComponents"
|
|
}
|