jd.setTabBarBadge(OBJECT)

为 tabBar 某一项的右上角添加文本

OBJECT 参数说明:

参数类型必填说明
indexNumbertabBar 的哪一项,从左边算起
textString显示的文本,超过 3 个字符则显示成“…”
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码

  1. jd.setTabBarBadge({
  2. index: 0,
  3. text: '2'
  4. })

jd.removeTabBarBadge(OBJECT)

移除 tabBar 某一项右上角的文本

OBJECT 参数说明:

参数类型必填说明
indexNumbertabBar 的哪一项,从左边算起
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

jd.showTabBarRedDot(OBJECT)

显示 tabBar 某一项的右上角的红点

OBJECT 参数说明:

参数类型必填说明
indexNumbertabBar 的哪一项,从左边算起
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

jd.hideTabBarRedDot(OBJECT)

隐藏 tabBar 某一项的右上角的红点

OBJECT 参数说明:

参数类型必填说明
indexNumbertabBar 的哪一项,从左边算起
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

onTabItemTap

点击 tab 时触发,见链接

示例代码

  1. Page({
  2. onTabItemTap(item) {
  3. console.log(item.index)
  4. console.log(item.pagePath)
  5. console.log(item.text)
  6. }
  7. })

jd.setTabBarStyle(OBJECT)

动态设置 tabBar 的整体样式

OBJECT 参数说明:

参数类型说明
colorHexColortab 上的文字默认颜色
selectedColorHexColortab 上的文字选中时的颜色
backgroundColorHexColortab 的背景色
borderStyleStringtabbar上边框的颜色, 仅支持 black/white
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码:

  1. jd.setTabBarStyle({
  2. color: '#FF0000',
  3. selectedColor: '#012F00',
  4. backgroundColor: '#0000FF',
  5. borderStyle: 'white'
  6. })

jd.setTabBarItem(OBJECT)

动态设置 tabBar 某一项的内容

OBJECT 参数说明:

参数类型必填说明
indexNumbertabBar 的哪一项,从左边算起
textStringtab 上按钮文字
iconPathString图片路径,icon 大小限制为40kb,建议尺寸为 81px 81px,当 postion 为 top 时,此参数无效,不支持网络图片
selectedIconPathString选中时的图片路径,icon 大小限制为40kb,建议尺寸为 81px 81px ,当 postion 为 top时,此参数无效
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码:

  1. jd.setTabBarItem({
  2. index: 0,
  3. text: 'text',
  4. iconPath: '/path/assets/iconPath',
  5. selectedIconPath: '/path/assets/selectedIconPath'
  6. })

jd.showTabBar(OBJECT)

显示 tabBar

OBJECT 参数说明:

参数类型必填说明
animationBoolean是否需要动画效果,默认无
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

jd.hideTabBar(OBJECT)

隐藏 tabBar

OBJECT 参数说明:

参数类型必填说明
animationBoolean是否需要动画效果,默认无
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)