ts_aimz/components/tabbar/custom-tabbar.wxml
2025-05-06 17:55:29 +08:00

7 lines
560 B
Plaintext

<view class="tabbar">
<view class="tabbar-item" wx:for="{{tabList}}" wx:key="index" bind:tap="switchTab" data-index="{{index}}">
<view wx:if="{{item.hasMsg}}" style="margin-left: 25px;border-radius: 15rpx;width: 15rpx;height: 15rpx;background-color: var(--primary-color);position: absolute;top: 22rpx;"></view>
<image class="tabbar-icon" src="{{item.selected? item.selectedIconPath : item.iconPath}}"></image>
<view class="tabbar-text" style="color: {{item.selected? selectedColor : color}}">{{item.text}}</view>
</view>
</view>