一般首页都采用tabBar的形式去展现,好在小程序帮我们实现了tabBar,很容易就可以实现。
在app.json中增加:
"tabBar": {
"color": "#bfbfbf",
"selectedColor": "#0aa4f5",
"list": [
{
"pagePath": "pages/shop/shop",
"text": "小铺",
"iconPath": "/image/shop.png",
"selectedIconPath": "/image/shop_s.png"
},
{
"pagePath": "pages/index/index",
"text": "我的",
"iconPath": "/image/mine.png",
"selectedIconPath": "/image/mine_s.png"
}
]
}
对选中图标、颜色这些进行配置即可。
小程序tabBar显示问题