| 1234567891011121314151617181920212223242526272829303132333435 |
- <view class="{{ type_acive ? 'is-active' : '' }}">
- <view class="search-w">
- <view class="search-w-left">
- <!-- <input class="search-input" type="text" data-key="seachKey" bindinput="bindInput" placeholder="请输入房源信息" bindconfirm="tapSearch" confirm-type="search" /> -->
- <input class="search-input" type="text" bindinput="bindInputValue" placeholder="请输入房源信息" bindconfirm="tapSearch" confirm-type="search" />
- </view>
- <view class="action" bindtap="tapSearch">
- <text class="iconfont iconhome_search"></text>
- <text>搜索</text>
- </view>
- </view>
- <view class="icon-list {{ isFixedTop ? 'fixed' : ''}}">
- <view wx:for="{{icon_list}}" class="icon-item" wx:key bindtap="changeListType" data-type="{{item.type}}">
- <text class="text-center">{{item.name}}</text>
- <text class="iconfont {{(type_acive === item.type ? 'iconhose_arrow_active':'iconhose_arrow_normal')}}"></text>
- </view>
- <drop-down bind:comfirmhandle="comfirmhandle" bind:selecthandle="selecthandle" bindtap="closeTypeActive" class="dp-con {{type_acive?'dp-active':''}}" arr="{{tab_panel}}" active="{{type_acive}}" city="{{currentCity}}"></drop-down>
- </view>
- <!--首页筛选器-->
- <view style="padding-bottom: {{isIphoneX ? '150rpx' : '100rpx'}}">
- <view wx:for="{{houses}}" wx:key class="house-list">
- <house-item house="{{item}}"></house-item>
- </view>
- <view class="empty hashouse-empty" wx:if="{{houses.length !== 0}}">
- <text class=" text-grey">没有更多的房源了</text>
- </view>
- <view class="empty" wx:if="{{houses.length === 0}}">
- <image style="width: 150rpx;height: 150rpx"></image>
- <text class="margin-top text-grey">没有更多的房源了</text>
- </view>
- </view>
- </view>
- <tab-bar />
|