123456789101112131415161718 |
- <van-tabs active="{{ active }}" tab-active-class='tab-active-class' color='#3874F6' bind:change="onChange">
- <van-tab wx:for="{{teams}}" title="{{item.teamname+'团队'}}" wx:key="index">
- <view class="head">
- <view class="count">
- 总计:{{item.team.length}}个
- </view>
- <view class="search">
- <van-icon name="search" />
- <input type="text" placeholder="搜索关键字" bindinput='onInput' value="{{keyword}}" />
- <van-icon name="close" bindtap="cancelTheSearch" />
- </view>
- <navigator url="#" class="add" bindtap="toAdd">
- <van-icon name="plus" />
- </navigator>
- </view>
- <List list='{{item.team}}' />
- </van-tab>
- </van-tabs>
|