1234567891011121314151617181920 |
- <van-sticky>
- <header>
- <view slot="content" class="header-title flex_row">
- <view class='goback' bindtap="goBack">
- <van-icon name="arrow-left" size="20px"/>
- </view>
- <text class="titlename">空间选择</text>
- <text class="righttext"></text>
- </view>
- </header>
- </van-sticky>
- <view>
- <van-search shape="round" value="{{ spaceName }}" bind:change="spaceSearch" placeholder="请输入房间名字关键词" />
- <view class="space_box">
- <block wx:for="{{currentList}}">
- <view class="space_item" bindtap="spaceClick" data-spaceitem="{{item}}">{{item.localName}}</view>
- </block>
- </view>
- </view>
|