index.wxml 753 B

123456789101112131415
  1. <van-collapse value="{{ activeNames }}" bind:change="onChange">
  2. <van-collapse-item content-class='content-class' title="{{item.teamleader[0].name+'的团队 ('+item.team.length+')'}}" name="1" wx:for="{{teams}}" wx:key="index">
  3. <view class="head">
  4. <view class="search">
  5. <van-icon name="search" />
  6. <input type="text" placeholder="搜索关键字" bindinput='onInput' value="{{keyword}}" />
  7. <van-icon name="close" bindtap="cancelTheSearch" />
  8. </view>
  9. <navigator url="#" class="add" bindtap="toAdd">
  10. <van-icon name="plus" />
  11. </navigator>
  12. </view>
  13. <List list='{{item.team}}' />
  14. </van-collapse-item>
  15. </van-collapse>