app_tree_planting/pages.json
itgaojian163 aae2813dd8 初始化
2023-01-11 19:31:59 +08:00

83 lines
2.3 KiB
JSON

{
"pages": [{
"path": "pages/news/index",
"style": {
"titleNView": false,
"navigationStyle": "custom",
"enablePullDownRefresh": false, // 不开启下拉刷新, 默认就是false
"disableScroll": true, // 禁止滚动, 解决scroll-view在Android小程序卡顿的问题
"app-plus": {
"bounce": "none" // 取消iOS回弹,避免和下拉刷新冲突 (小程序无法取消, 点此查看H5端的取消方法... )
},
"navigationBarTitleText": "全民植树",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/duty/index",
"style": {
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "尽职尽责",
"enablePullDownRefresh": true
}
},
{
"path": "pages/user/index",
"style": {
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "个人中心",
"enablePullDownRefresh": true
}
}, {
"path": "pages/user/login",
"style": {
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "登录",
"enablePullDownRefresh": false
}
},
{
"path": "pages/user/register",
"style": {
"navigationBarBackgroundColor": "#FFFFFF",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "注册",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "全民植树",
"navigationBarBackgroundColor": "#8cc7b5",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#000000",
"selectedColor": "#000000",
"backgroundColor": "#FFFFFF",
"list": [{
"pagePath": "pages/news/index",
"iconPath": "static/images/nav/icon_home.png",
"selectedIconPath": "static/images/nav/icon_home_hover.png",
"text": "新闻资讯"
},
{
"pagePath": "pages/duty/index",
"iconPath": "static/images/nav/icon_favorite.png",
"selectedIconPath": "static/images/nav/icon_favorite_hover.png",
"text": "尽职尽责"
},
{
"pagePath": "pages/user/index",
"iconPath": "static/images/nav/icon_user.png",
"selectedIconPath": "static/images/nav/icon_user_hover.png",
"text": "个人中心"
}
]
}
}