litian
2024-02-28 741c45e9902a99eefa1c032c963b77f7c251a3f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<t-tab-bar
 value="{{active}}"
 bindchange="onChange"
 split="{{false}}"
>
    <t-tab-bar-item
     wx:for="{{list}}"
     wx:for-item="item"
     wx:for-index="index"
     wx:key="index"
    >
        <view class="custom-tab-bar-wrapper">
            <t-icon prefix="wr" name="{{item.icon}}" size="48rpx" />
            <view class="text">{{ item.text }}</view>
        </view>
    </t-tab-bar-item>
</t-tab-bar>