mc.setTabBarItem(Object object)
动态设置 tabBar 某一项的内容
Object object 参数
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
index | Number | 是 | tabBar 的哪一项,从左边算起 | |
text | String | 否 | tab 上的按钮文字 | |
iconPath | String | 否 | 图片路径,建议尺寸为 81px * 81px | |
selectedIconPath | String | 否 | 选中时的图片路径,建议尺寸为 81px * 81px | |
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
Tips:
- 当 app.json 中 tabBar 设置的 postion 为 top 时,
iconPath
/selectedIconPath
无效
示例代码:
mc.setTabBarItem({
index: 1,
text: '我的',
selectedIconPath: 'assets/images/tabicon_api_sl.png',
iconPath: 'assets/images/tabicon_api.png',
complete: function(res){
console.info(res);
}
})