You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
858 B
1 lines
858 B
<view class="weui-tabbar {{reactive ? 'weui-tabbar__reactive' : ''}} {{extClass}}" aria-role="tablist"><view wx:for="{{list}}" wx:key="index" data-index="{{index}}" bindtap="tabChange" class="weui-tabbar__item {{index === current ? 'weui-bar__item_on' : ''}}" aria-role="tab" aria-labelledby="t{{index}}_title" aria-describedby="t{{index}}_tips" aria-selected="{{index === current}}"><view id="t{{index}}_tips" aria-hidden="true" style="position: relative;display:inline-block;"><image src="{{current === index ? item.selectedIconPath : item.iconPath}}" class="weui-tabbar__icon"/><mp-badge wx:if="{{item.badge || item.dot}}" content="{{item.badge}}" aria-label="{{item.ariaLabel}}" style="position: absolute;top:-2px;left:calc(100% - 3px)"/></view><view id="t{{index}}_title" aria-hidden="true" class="weui-tabbar__label">{{item.text}}</view></view></view>
|
|
|