{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/webview/webview",
"style" : {
"navigationBarTitleText": "百度",
"navigationStyle": "custom",
"enablePullDownRefresh":true//开启下拉刷新
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app",
"navigationStyle": "custom",
"enablePullDownRefresh":true//开启下拉刷新
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#007AFF",
"borderStyle": "black",
"backgroundColor": "#F8F8F8",
"list": [
{
"pagePath": "pages/webview/webview",
// "iconPath": "static/api.png",
// "selectedIconPath": "static/apiHL.png",
"text": "百度"
},{
"pagePath": "pages/index/index",
// "iconPath": "static/component.png",
// "selectedIconPath": "static/componentHL.png",
"text": "首页"
}
]
}
}
1 个回复
树摇风 (作者)
自己顶一下