加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pages.json 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
liaobaba 提交于 2020-07-13 09:37 . 首页
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style":{
"enablePullDownRefresh":true,//是该页面具有下拉刷新的功能
"onReachBottomDistance":50//向下多少px加载下一页
}
}
,{
"path" : "pages/cart/cart",
"style" : {}
}
,{
"path" : "pages/member/member",
"style" : {}
}
,{
"path" : "pages/news/news",
"style" : {}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "商城",
"navigationBarBackgroundColor": "#b50e03",
"backgroundColor": "#F8F8F8"
},
"tabBar":{
"selectedColor":"#b50e03",
"color":"#ccc",
"list":[
{
"text":"首页",
"selectedIconPath":"static/icon/home-active.png",
"iconPath":"static/icon/home.png",
"pagePath":"pages/index/index"
},
{
"text":"资讯",
"selectedIconPath":"static/icon/news-active.png",
"iconPath":"static/icon/news.png",
"pagePath":"pages/news/news"
},
{
"text":"购物车",
"selectedIconPath":"static/icon/cart-active.png",
"iconPath":"static/icon/cart.png",
"pagePath":"pages/cart/cart"
},
{
"text":"会员",
"selectedIconPath":"static/icon/member-active.png",
"iconPath":"static/icon/member.png",
"pagePath":"pages/member/member"
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化