加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 2.68 KB
一键复制 编辑 原始数据 按行查看 历史
黄慧刚 提交于 2023-02-03 15:21 . 邻里互动功能完善
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "登录页",
// 自定义导航条
"navigationStyle": "custom"
}
},
{
"path": "pages/index/index",
"style": {
// 导航条 标题 文本
"navigationBarTitleText": "智慧社区",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": true,
"navigationBarBackgroundColor": "#090"
}
},
{
"path": "pages/community/community",
"style": {
"navigationBarTitleText": "社区",
"enablePullDownRefresh": false
}
},
{
"path": "pages/my/my",
"style": {
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false
}
},
{
"path": "pages/property/property",
"style": {
"navigationBarTitleText": "物业管理",
"enablePullDownRefresh": false
}
}
, {
"path": "pages/feePay/feePay",
"style": {
// 自定义导航条
"navigationStyle": "custom"
}
}, {
"path": "pages/property-fee/property-fee",
"style": {
// 启用下拉刷新
"enablePullDownRefresh": false,
// 自定义导航条
"navigationStyle": "custom"
}
}, {
"path": "pages/feeRecord/feeRecord",
"style": {
"navigationBarTitleText": "缴费记录",
"enablePullDownRefresh": true
}
}, {
"path": "pages/parking/parking",
"style": {
// 自定义导航条
"navigationStyle": "custom"
}
}, {
"path": "pages/chatroom/chatroom",
"style": {
// 自定义导航条
"navigationStyle": "custom",
//距离页面底部多少时触发"滚定到底部了"这个事件
"onReachBottomDistance": 0,
// 是否启用下拉刷新
"enablePullDownRefresh": true
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#090",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"selectedColor": "#090",
"color": "#8a8a8a",
"list": [{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "static/img/home.png",
"selectedIconPath": "static/img/home_active.png"
},
{
"text": "物业",
"pagePath": "pages/property/property",
"iconPath": "static/img/property.png",
"selectedIconPath": "static/img/property_active.png"
},
{
"text": "社区",
"pagePath": "pages/community/community",
"iconPath": "static/img/community.png",
"selectedIconPath": "static/img/community_active.png"
},
{
"text": "我的",
"pagePath": "pages/my/my",
"iconPath": "static/img/my.png",
"selectedIconPath": "static/img/my_active.png"
}
]
},
"uniIdRouter": {}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化