当前位置:   article > 正文

uniapp和小程序设置tabBar和显示与隐藏tabBar_uni.settabbaritem

uni.settabbaritem

(1)设置tabBar

uni.setTabberItem({});
wx.setTabberItem({});
indexnumbertabBar 的哪一项,从左边算起,索引从0开始
textstringtab 上按钮文字
iconPathstring图片路径
selectedIconPathstring选中时的图片路径
pagePathstring页面绝对路径
visiblebooleantab 是否显示
  1. uni.setTabBarItem({
  2. index: 0,
  3. text: 'text',
  4. iconPath: '/path/to/iconPath',
  5. selectedIconPath: '/path/to/selectedIconPath',
  6. pagePath: 'pages/home/home'
  7. })
  1. wx.setTabBarItem({
  2. index: 0,
  3. text: 'text',
  4. iconPath: '/path/to/iconPath',
  5. selectedIconPath: '/path/to/selectedIconPath',
  6. pagePath: 'pages/home/home'
  7. })

(2)显示tabBar

uni.showTabber();
wx.showTabber();

(3)隐藏tabBar:

uni.hideTabber();
wx.hideTabber();
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/398428
推荐阅读
相关标签
  

闽ICP备14008679号