index.wxml 800 B

123456789101112131415161718
  1. <van-tabs active="{{ active }}" tab-active-class='tab-active-class' color='#3874F6' bind:change="onChange">
  2. <van-tab wx:for="{{teams}}" title="{{item.teamname+'团队'}}" wx:key="index">
  3. <view class="head">
  4. <view class="count">
  5. 总计:{{item.team.length}}个
  6. </view>
  7. <view class="search">
  8. <van-icon name="search" />
  9. <input type="text" placeholder="搜索关键字" bindinput='onInput' value="{{keyword}}" />
  10. <van-icon name="close" bindtap="cancelTheSearch" />
  11. </view>
  12. <navigator url="#" class="add" bindtap="toAdd">
  13. <van-icon name="plus" />
  14. </navigator>
  15. </view>
  16. <List list='{{item.team}}' />
  17. </van-tab>
  18. </van-tabs>