index.wxml 711 B

1234567891011121314151617181920
  1. <van-sticky>
  2. <header>
  3. <view slot="content" class="header-title flex_row">
  4. <view class='goback' bindtap="goBack">
  5. <van-icon name="arrow-left" size="20px"/>
  6. </view>
  7. <text class="titlename">空间选择</text>
  8. <text class="righttext"></text>
  9. </view>
  10. </header>
  11. </van-sticky>
  12. <view>
  13. <van-search shape="round" value="{{ spaceName }}" bind:change="spaceSearch" placeholder="请输入房间名字关键词" />
  14. <view class="space_box">
  15. <block wx:for="{{currentList}}">
  16. <view class="space_item" bindtap="spaceClick" data-spaceitem="{{item}}">{{item.localName}}</view>
  17. </block>
  18. </view>
  19. </view>