81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
||
"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": "我的"
|
||
}
|
||
]
|
||
}
|
||
}
|