内容详情 您现在的位置是: 首页> Js
动态生成小程序底部导航栏
发布时间:2021-01-04 19:07 已围观:2382
摘要动态生成小程序底部导航栏,便于根据需要自定义底部导航
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/custom-tabbar.html), “” 可以下载相关代码
1.修改在app.json中的关于底部导航栏设置 "custom": true
"tabBar": {
"custom": true,//这个设置为true,标识启用自定义tabbar
"color": "#a9b7b7",
"selectedColor": "#11cd6e",
"borderStyle": "white",
"list": [
{
"selectedIconPath": "image/index-select.png",
"iconPath": "image/index.png",
"pagePath": "pages/index/index",
"text": "组件"
},
{
"selectedIconPath": "image/info-select.png",
"iconPath": "image/info.png",
"pagePath": "pages/info/info",
"text": "接口"
}
]
}
3.再对自定义导航栏进行一些交互设置
//修改custom-tab-bar/index.js 文件
const app = getApp();
Component({
data: {
selected: 0, //当前选中的底部导航,从0索引开始
color: "#7A7E83",
selectedColor: "#3cc51f",
list: [] //tabBar的数据
},
lifetimes: {
attached() { //设置tabbar内容,可在别的页面中对list进行赋值达到动态效果
this.setData({
list: app.globalData.list//这里获取globalData里的list数据做为导航内容
})
},
},
methods: {
switchTab(e) { //对点击tabbar进行跳转
const data = e.currentTarget.dataset;
const url = data.path;
wx.switchTab({ url });
}
}
})
4.设置导航数据 ,在app.js自定义globalData中添加数据,页面通过判断可以更改globalData.list从而更改导航
globalData: {
"list": [{
"pagePath": "page/component/index",
"text": "组件"
}, {
"pagePath": "page/API/index",
"text": "接口"
}]
}
5.在tabbar界面增加交互,代码放在onshow中
if (typeof this.getTabBar === 'function' &&this.getTabBar()){
this.getTabBar().setData({
selected: 0 //当前选中的底部导航,从0索引开始
})
}
声明:本文内容摘自网络,版权归原作者所有。如有侵权,请联系处理,谢谢~
转发:https://blog.csdn.net/dqm159159/article/details/101204690
赞一个 (15)