tarberChange.js 275 B

123456789
  1. // 修改样式
  2. export function changeTaber (index) {
  3. const aa = document.querySelectorAll('.uni-tabbar>.uni-tabbar__item');
  4. // 初始化class
  5. aa.forEach((e) => {
  6. e.setAttribute('class','uni-tabbar__item')
  7. })
  8. aa[index].setAttribute('class','uni-tabbar__item active')
  9. }