This commit is contained in:
2025-09-28 17:07:09 +08:00
commit 888f8d9939
38 changed files with 1544 additions and 0 deletions

57
app.json Normal file
View File

@@ -0,0 +1,57 @@
{
"pages": [
"pages/index/index",
"pages/index2/index2",
"pages/record/record",
"pages/detail/detail",
"pages/history/history"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#4a6fa5",
"navigationBarTitleText": "梦境日记",
"navigationBarTextStyle": "white"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#4a6fa5",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-active.png"
},
{
"pagePath": "pages/index2/index2",
"text": "首页2",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-active.png"
},
{
"pagePath": "pages/record/record",
"text": "记录",
"iconPath": "images/add.png",
"selectedIconPath": "images/add-active.png"
},
{
"pagePath": "pages/history/history",
"text": "历史",
"iconPath": "images/history.png",
"selectedIconPath": "images/history-active.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "用于加载本地视频资源"
}
},
"networkTimeout": {
"downloadFile": 10000
},
"lazyCodeLoading": "requiredComponents"
}