森蓝小程序

This commit is contained in:
2025-04-23 19:50:30 +08:00
parent 7776447ce3
commit 5205361ac0
111 changed files with 20504 additions and 0 deletions

80
pages.json Normal file
View File

@@ -0,0 +1,80 @@
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/home/home",
"style" :
{
"enablePullDownRefresh": false, //设置为true表示当前页面开启下拉刷新
"backgroundTextStyle": "dark",
"navigationStyle": "custom",
"disableScroll": true
},
"lazyCodeLoading": "requiredComponents"
}
,{
"path" : "pages/display/display",
"style" :
{
"enablePullDownRefresh": false,
"navigationStyle": "custom",
"disableScroll": true
},
"lazyCodeLoading": "requiredComponents"
}
,{
"path" : "pages/mine/mine",
"style" :
{
"enablePullDownRefresh": false,
"navigationStyle": "custom",
"disableScroll": true
},
"lazyCodeLoading": "requiredComponents"
}
,{
"path" : "pages/myPhoto/myPhoto",
"style" :
{
"enablePullDownRefresh": false,
"navigationStyle": "custom",
"disableScroll": true
},
"lazyCodeLoading": "requiredComponents"
}
,{
"path" : "pages/selectPhoto/selectPhoto",
"style" :
{
"enablePullDownRefresh": false,
"navigationStyle": "custom",
"disableScroll": true
},
"lazyCodeLoading": "requiredComponents"
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#ffffff",
"selectedColor": "#6777FD",
"custom": true,
"list": [
{
"pagePath": "pages/home/home",
"iconPath": "static/icon/icon_Home_n@3x_da.png",
"selectedIconPath": "static/icon/icon_Home_n@3x_a.png",
"text": "首页"
},
{
"pagePath": "pages/mine/mine",
"iconPath": "static/icon/icon_我的_n@3x_da.png",
"selectedIconPath": "static/icon/icon_我的_n@3x_a.png",
"text": "我的"
}
]
}
}