大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文实例为大家分享了微信小程序实现topBar底部选择栏的具体代码,供大家参考,具体内容如下
创新互联建站主营京山网站建设的网络公司,主营网站建设方案,重庆App定制开发,京山h5成都小程序开发搭建,京山网站营销推广欢迎京山等地区企业咨询先看一下效果:底部分为三个页面,点击不同的选项就会跳转到相对应的页面去。
下面是文件夹的结构
这个分为三个页面,分别是 index,dujia,Info
下面是代码:
app.json
{ "pages": [//有几个页面,pages里面就要绑定几个 "pages/dujia/dujia", "pages/index/index", "pages/info/info" ], "window": { "backgroundTextStyle": "dark", "navigationBarBackgroundColor": "#DF3031", "navigationBarTitleText": "topBar练习", "navigationBarTextStyle": "white" }, "tabBar": { "color": "#000000", "selectedColor": "#DF3031", "list": [ { "pagePath": "pages/index/index", "text": "第一页", "iconPath": "images/1.png", "selectedIconPath": "images/1.png" }, { "pagePath": "pages/dujia/dujia", "text": "第二页", "iconPath": "images/2.png", "selectedIconPath": "images/2.png" }, { "pagePath": "pages/info/info", "text": "第三页", "iconPath": "images/3.jpg", "selectedIconPath": "images/3.jpg" } ] } }