Files
senlan/pages.json
2025-04-23 19:50:30 +08:00

81 lines
2.3 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"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": "我的"
}
]
}
}