加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pages.json 3.32 KB
一键复制 编辑 原始数据 按行查看 历史
陈超571135774 提交于 2022-12-09 19:59 . 新增页面邻里互动
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/login/login",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"enablePullDownRefresh": true
}
}, {
"path": "pages/login/login"
}, {
"path": "pages/register/register"
}, {
"path": "pages/my/my"
}, {
"path": "pages/property/property"
}, {
"path": "pages/community/community"
}, {
"path": "pages/find-pwd/find-pwd",
"style": {
"navigationBarTitleText": "找回密码",
"enablePullDownRefresh": false
}
}, {
"path": "pages/property-fee/property-fee",
"style": {
// 自定义导航条
"navigationStyle": "custom"
}
}, {
"path": "pages/parking/parking",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/hospitals/hospitals",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/chatroom/chatroom",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": true
}
}, {
"path": "pages/open-door/open-door",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/repairs/repairs",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/notice/notice",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/menu-items/menu-items",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}, {
"path": "pages/fee-history/fee-history",
"style": {
"navigationBarTitleText": "缴费详情",
"enablePullDownRefresh": false
}
}, {
"path": "pages/fee-pay/fee-pay",
"style": {
"navigationBarTitleText": "缴费",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "智慧社区",
"navigationBarBackgroundColor": "#6eda0c",
//页面掀开后其下面的颜色-仅在小程序中有效
"backgroundColor": "#F8F8F8",
//页面下拉刷新默认false
"enablePullDownRefresh": false,
//导航条的默认样式,使用默认提供的导航条
"navigationStyle": "default"
},
"uniIdRouter": {},
"tabBar": {
//没被选中的页签文字颜色
"color": "#8A8A8A",
//选中颜色的页签文字颜色
"selectedColor": "#6eda0c",
//页签列表
"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/home.png",
"selectedIconPath": "static/img/home_active.png"
}
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化