75 lines
3.2 KiB
Plaintext
75 lines
3.2 KiB
Plaintext
<!--index.wxml-->
|
|
<import src="../common/common.wxml" />
|
|
|
|
<view class="container" wx:if="{{ !isloding }}">
|
|
<to-top wx:if="{{ showTOTOP }}"></to-top>
|
|
<header-nav haveSearch="true">寄托香港租房</header-nav>
|
|
|
|
<head-swiper attachment="{{ attachment }}"></head-swiper>
|
|
<tab StudentapartmentNew="{{ StudentapartmentNew}}" page="personList" listTab="{{ listTab }}"></tab>
|
|
|
|
<!-- 热词 -->
|
|
<view class="hot-text-box">
|
|
<view class="hot-text" wx:if="{{ groupSearch.length>0 }}">
|
|
<view class="{{ index===selectGroupIndex ? 'active item' :'item'}}" bindtap="selectGroup" data-index="{{ index }}" wx:for="{{ groupSearch }}" wx:key="index">{{ item['keyword'] }}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 条件框 -->
|
|
<view class="condition-box" style="top:{{screen_data.totalTopHeight}}px">
|
|
<view class="tab">
|
|
<area-select title="区域" verifiedList="{{ verifiedList }}" school="{{ school.list }}" locationValue="{{ location.value }}" schoolValue="{{ school.value}}" img="tobottom" list="{{ location.data }}" bindsubmit="submitarea">
|
|
<view></view>
|
|
</area-select>
|
|
</view>
|
|
<view class="tab">
|
|
<select-more title="出租方式" img="tobottom" propertyValue="{{ types.value }}" list="{{ types.data }}" bindsubmit="submittype"></select-more>
|
|
</view>
|
|
<view class="tab">
|
|
<range-box title="租金区间(港元)" img="tobottom" bindsubmit="submitMoney" value1="{{ money.rent_min }}" value2="{{ money.rent_max }}">
|
|
<view wx:if="{{ money.rent_min || money.rent_max }}" class="bold">
|
|
{{ (money.rent_min || '') + '~' + (money.rent_max || '') }}
|
|
</view>
|
|
<block wx:if="{{ !money.rent_min && !money.rent_max}}">租金</block>
|
|
<image src="/img/tobottom-c.png" class="tobottom"></image>
|
|
</range-box>
|
|
</view>
|
|
|
|
<view class="tab" data-tab="timestamp">
|
|
<filtrate-box bindselectSubmit="myEventSelectSubmit" property="{{ property }}" value="{{ moreCondition.data }}">
|
|
<view class="{{ hascondition ? 'bold':''}}">
|
|
更多<image src="/img/filtrate.png" class="filtrate"></image>
|
|
</view>
|
|
</filtrate-box>
|
|
</view>
|
|
<view class="tab">
|
|
<select-single title="请选择排序方式" list="{{ orderby.list }}" value="{{ orderby.value }}" bindsubmit="submitOrderby"></select-single>
|
|
</view>
|
|
</view>
|
|
|
|
<!--合租 -->
|
|
<view class='list'>
|
|
<block wx:for="{{ lists }}" wx:key="index">
|
|
<template is="personalList" wx:if="{{ !item.isad }}" data="{{ item:item }}" />
|
|
<ads isList="true" wx:if="{{ item.isad && !item.banner }}" data-index="{{ index }}" bindclickAD="clickAD" bindcloseAD="closeAD" item="{{ item }}"></ads>
|
|
<banner-ad wx:if="{{ item.isad && item.banner }}" index="{{ index }}" item="{{ item }}"></banner-ad>
|
|
</block>
|
|
<block wx:if="{{ lists.length==0 && !loading }}">
|
|
<view class='nocontent'>
|
|
<image src="../../img/file.png" class='file'></image>
|
|
暂无数据
|
|
</view>
|
|
</block>
|
|
</view>
|
|
|
|
<view class="loading" wx:if="{{ loading }}">
|
|
<view></view>
|
|
<view></view>
|
|
<view></view>
|
|
<view></view>
|
|
<view></view>
|
|
</view>
|
|
|
|
<!-- 公告弹窗组件 -->
|
|
<announcement-popup interface="listings" init="{{ initState }}"></announcement-popup>
|
|
</view> |