加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pages.json 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
junfeng 提交于 2019-09-05 06:50 . 1、增加快递服务和框架的搭建
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "快递服务"
}
}
,{
"path" : "pages/community/index",
"style" : {
"navigationBarTitleText": "社区服务"
}
}
,{
"path" : "pages/user/index",
"style" : {
"navigationBarTitleText": "个人中心"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "多多社区",
"navigationBarBackgroundColor": "#27b18d",
"backgroundColor": "#FFFFFF"
},
"tabBar": {
"color": "#333333",
"selectedColor": "#27b18d",
"borderStyle":"white",
"backgroundColor": "#ffffff",
"list": [
{
"iconPath": "static/icon-courier.png",
"selectedIconPath": "static/icon-courier-selected.png",
"pagePath": "pages/index/index",
"text": "快递服务"
},
{
"iconPath": "static/icon-community.png",
"selectedIconPath": "static/icon-community-selected.png",
"pagePath": "pages/community/index",
"text": "社区服务"
},
{
"iconPath": "static/icon-my.png",
"selectedIconPath": "static/icon-my-selected.png",
"pagePath": "pages/user/index",
"text": "个人中心"
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化