| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view class="container">
- <view class="search">
- <input
- placeholder="搜索带看"
- value="{{keyword}}"
- bindinput="inputChange"
- bindconfirm="search"
- confirm-type="search"
- type="text"
- />
- <image wx:if="{{imgServer}}" src="{{imgServer + '/search.png'}}"></image>
- </view>
- <view class="room-list" wx:if="{{filterList.length}}">
- <view class="sign" wx:for='{{filterList}}' wx:key="id">
- <image src="{{item.cover}}" ></image>
- <view class="footer">
- <view class="info">
- <view class="title">{{item.title}}</view>
- <view class="time">最后带看:{{item.status === 1 ? '进行中' : item.lastLookTime}}</view>
- </view>
- <view class="actions">
- <button
- bindtap="gotoRoom"
- data-id='{{item.id}}'
- class="{{item.status === 1 ? 'active' : ''}}"
- >
- {{ item.status === 1 ? '加入带看' : '自由参观' }}
- </button>
- </view>
- </view>
- </view>
- </view>
- <view class="unbrand" wx:else>
- <image src="/static/images/img_noshop@3x.png"></image>
- <view class="text">暂无相关带看</view>
- </view>
- </view>
|