mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
28 lines
832 B
Plaintext
28 lines
832 B
Plaintext
<template name="zui-tab">
|
|
<view class="zui-tab">
|
|
<block wx:if="{{tab.scroll}}">
|
|
<scroll-view class="zui-tab__bd zui-tab__bd--scroll {{fixed ? 'zui-tab__bd--fixed' : ''}}" scroll-x="true">
|
|
<template is="zui-tab-list" data="{{ tab, id }}"></template>
|
|
</scroll-view>
|
|
</block>
|
|
<block wx:else>
|
|
<view class="zui-tab__bd">
|
|
<template is="zui-tab-list" data="{{ tab, id }}"></template>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</template>
|
|
|
|
<template name="zui-tab-list">
|
|
<view
|
|
wx:for="{{tab.list}}"
|
|
wx:key="id"
|
|
class="zui-tab__item {{tab.selectedId == item.id ? 'zui-tab__item--selected' : ''}}"
|
|
data-id="{{id}}"
|
|
data-item-id="{{item.id}}"
|
|
bindtap="_handleZuiTabChange"
|
|
>
|
|
<view class="zui-tab__title">{{item.title}}</view>
|
|
</view>
|
|
</template>
|