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.
98 lines
2.2 KiB
98 lines
2.2 KiB
{
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
{
|
|
"path": "pages/index/index",
|
|
"style": {
|
|
"navigationBarTitleText": "首页",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/profit/profit",
|
|
"style": {
|
|
"navigationBarTitleText": "收益",
|
|
"enablePullDownRefresh": true
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/userInfo",
|
|
"style": {
|
|
"navigationBarTitleText": "我的",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},{
|
|
"path": "pages/userInfo/about/about",
|
|
"style": {
|
|
"navigationBarTitleText": "关于",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/contact/contact",
|
|
"style": {
|
|
"navigationBarTitleText": "联系我们",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/extends/extends",
|
|
"style": {
|
|
"navigationBarTitleText": "邀请更多",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/inviteLog/inviteLog",
|
|
"style": {
|
|
"navigationBarTitleText": "邀请记录",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/notice/notice",
|
|
"style": {
|
|
"navigationBarTitleText": "系统公告",
|
|
"enablePullDownRefresh": false
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/userInfo/withdraw/withdraw",
|
|
"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/profit",
|
|
"iconPath": "static/theme-default.png",
|
|
"selectedIconPath": "static/theme-select.png",
|
|
"text": "收益"
|
|
},
|
|
{
|
|
"pagePath": "pages/userInfo/userInfo",
|
|
"iconPath": "static/mine-default.png",
|
|
"selectedIconPath": "static/mine-select.png",
|
|
"text": "我的"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|