HomeDocs
跳到主要内容

dlt.setTabBarItem

简介

动态设置 tabBar 某一项的内容,图片支持文件和网络文件。

使用限制

基础库从 4.0.0 或更高版本支持。

参数

Object object

属性类型默认值必填说明
indexnumbertabBar 的哪一项,从左边算起,从 0 开始。不得超出预设定 tabs 大小。注意:index 不要超出 appConfig tabs 大小范围。
textstringtab 上的按钮文字。
iconPathstring图片路径,icon 大小限制为 40kb,建议尺寸为 81px * 81px,支持网络图片,当 postion 为 top 时,此参数无效
selectedIconPathstring选中时的图片路径,icon 大小限制为 40kb,建议尺寸为 81px * 81px ,支持网络图片,当 postion 为 top 时,此参数无效
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

object.success 回调函数

参数

Object res

属性类型说明
successstringtrue-成功

object.fail 回调函数

参数

Object res

属性类型说明
successstringfalse-失败
errMsgstringerrMsg 枚举值:
- ok
- Parameter error: T10001
- set tab item failed,it's not tab page: T10002
- set tab item failed,please check the config: T10003

示例代码

// pages/index/index.js
Page({
setTabBarItem() {
dlt.setTabBarItem({
index: 0,
text: 'tab1',
iconPath: 'http://xxx.png',
selectedIconPath: 'http://xyx.png',
success: () => {
console.log('success');
},
});
},
});
Privacy agreementDeveloper agreementcontact us: developer_service.mi@transsion.com © 2024 MiniApp. All Rights Reserved.