|
@@ -1,10 +1,15 @@
|
|
|
<!--index.wxml-->
|
|
|
-<view class="container">
|
|
|
- <t-search model:value="{{searchValue}}" label="1" placeholder="搜索带看" shape='round' />
|
|
|
+<view class="wrapper">
|
|
|
+ <t-sticky>
|
|
|
+ <t-search class="search" model:value="{{searchValue}}" label="1" placeholder="搜索带看" shape='round' />
|
|
|
+ </t-sticky>
|
|
|
+ <view class="container">
|
|
|
|
|
|
- <view wx:for="{{dataList}}" wx:key="roomId" wx:for-index="idx" wx:for-item="item">
|
|
|
+ <view wx:for="{{dataList}}" wx:key="roomId" wx:for-index="idx" wx:for-item="item">
|
|
|
|
|
|
- <card cardId="{{item.roomId}}" name="{{item.roomTitle}}" cover="{{item.roomCoverUrl}}" status="{{item.roomStatus}}" lastTime="{{item.lastLookTime}}" bindtoRoom="handleToRoom" ></card>
|
|
|
- </view>
|
|
|
+ <card cardId="{{item.roomId}}" name="{{item.roomTitle}}" cover="{{item.roomCoverUrl}}" status="{{item.roomStatus}}" lastTime="{{item.lastLookTime}}" bindtoRoom="handleToRoom"></card>
|
|
|
+ </view>
|
|
|
|
|
|
+ </view>
|
|
|
+ <t-back-top theme="round" text="顶部" bind:to-top="onToTop" fixed="{{true}}"></t-back-top>
|
|
|
</view>
|