You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
{
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "首页",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/profit/profit",
|
|
"style": {
|
|
"navigationBarTitleText": "收益",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/userInfo",
|
|
"style": {
|
|
"navigationBarTitleText": "我的",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "black",
|
|
"navigationBarTitleText": "bnyer",
|
|
"navigationBarBackgroundColor": "#F8F8F8",
|
|
"backgroundColor": "#F8F8F8"
|
|
},
|
|
//底部跳转tab
|
|
"tabBar": {
|
|
"color": "#7A7E83",
|
|
"selectedColor": "#1296DB",
|
|
"borderStyle": "black",
|
|
"backgroundColor": "#F8F8F8",
|
|
"list": [{
|
|
"pagePath": "pages/index/index",
|
|
"iconPath": "static/index-default.png",
|
|
"selectedIconPath": "static/index-select.png",
|
|
"text": "首页"
|
|
},
|
|
{
|
|
"pagePath": "pages/profit/index",
|
|
"iconPath": "static/theme-default.png",
|
|
"selectedIconPath": "static/theme-select.png",
|
|
"text": "收益"
|
|
},
|
|
{
|
|
"pagePath": "pages/userInfo/index",
|
|
"iconPath": "static/mine-default.png",
|
|
"selectedIconPath": "static/mine-select.png",
|
|
"text": "我的"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|