加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pages.json 3.59 KB
一键复制 编辑 原始数据 按行查看 历史
afterwolf 提交于 2023-07-07 12:06 . finish chatroom.vue
{
"pages": [{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}, {
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "智慧社区",
// "navigationBarBackgroundColor": "#009900",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/my/my",
"style": {
"navigationBarTitleText": "我的",
// "navigationBarBackgroundColor": "#009900",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": false
}
}, {
"path": "pages/property/property",
"style": {
"navigationBarTitleText": "物业管理",
// "navigationBarBackgroundColor": "#009900",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": false
}
}, {
"path": "pages/community/community",
"style": {
"navigationBarTitleText": "社区",
// "navigationBarBackgroundColor": "#009900",
"navigationBarTextStyle": "white",
"enablePullDownRefresh": false
}
}, {
"path": "pages/test/testView/testView",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
},
{
"path": "pages/test/testStyle/testStyle",
"style": {
"navigationBarTitleText": "样式测试",
"enablePullDownRefresh": false
}
}, {
"path": "pages/test/testText/testText",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/test/testImage/testImage",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/property-fee/property-fee",
"style": {
"navigationBarTitleText": "",
//指定导航条的样式:不要默认,要自定义
"navigationStyle": "custom",
"enablePullDownRefresh": false
}
}, {
"path": "pages/feeHistory/feeHistory",
"style": {
"navigationBarTitleText": "缴费历史",
"enablePullDownRefresh": false
}
}, {
"path": "pages/feeDetails/feeDetails",
"style": {
"navigationBarTitleText": "",
//导航条样式:不使用默认的,而要自定义
"navigationStyle": "custom",
"enablePullDownRefresh": false
}
}, {
"path": "pages/parking/parking",
"style": {
"navigationBarTitleText": "智慧停车",
"enablePullDownRefresh": false
}
}, {
"path": "pages/chatroom/chatroom",
"style": {
"navigationBarTitleText": "",
//触发“页面滚动到底部”需要的阈值,单位是px
"onReachBottomDistance": 50,
//是否启用页面顶部下拉刷新功能:把默认的false改为true
"enablePullDownRefresh": true
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "智慧社区",
//此处的颜色不能写成#090,有兼容性问题
"navigationBarBackgroundColor": "#009900",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {},
"tabBar": {
"color": "#8a8a8a",
"selectedColor": "#009900",
"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"
}]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化