yingsa/miniprogram/app.json
Ethanfly d07ebb735a fix(env): Update API URL and enhance HTML structure
- Change VITE_API_URL in .env from localhost:3000 to localhost:3001 for backend access.
- Update index.html to replace favicon with logo.png and ensure proper HTML structure.
- Add new dependencies for WangEditor in package.json and package-lock.json to support rich text editing features.
2026-02-06 19:04:16 +08:00

58 lines
1.6 KiB
JSON

{
"pages": [
"pages/index/index",
"pages/player/index",
"pages/user/index",
"pages/match/challenge/index",
"pages/match/challenge-detail/index",
"pages/match/ranking/index",
"pages/match/history/index",
"pages/match/recent/index",
"pages/article/list/index",
"pages/article/detail/index",
"pages/points/mall/index",
"pages/points/records/index",
"pages/points/order/index",
"pages/store/index"
],
"window": {
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#FF6B35",
"navigationBarTitleText": "英飒俱乐部",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#999999",
"selectedColor": "#FF6B35",
"backgroundColor": "#ffffff",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "排名",
"iconPath": "images/tab-rank.png",
"selectedIconPath": "images/tab-rank-active.png"
},
{
"pagePath": "pages/match/challenge/index",
"text": "比赛",
"iconPath": "images/tab-match.png",
"selectedIconPath": "images/tab-match-active.png"
},
{
"pagePath": "pages/points/mall/index",
"text": "积分",
"iconPath": "images/tab-points.png",
"selectedIconPath": "images/tab-points-active.png"
},
{
"pagePath": "pages/user/index",
"text": "我的",
"iconPath": "images/tab-user.png",
"selectedIconPath": "images/tab-user-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}