187 lines
8.4 KiB
Plaintext
187 lines
8.4 KiB
Plaintext
<view class="container" wx:if="{{ !loding }}">
|
|
<header-nav inner-text="Some text" isIndexPage="index">寄托香港租房</header-nav>
|
|
<!-- swiper -->
|
|
<head-swiper attachment="{{ banner }}" isInner="1"></head-swiper>
|
|
<!-- 搜索 -->
|
|
<navigator url="/pages/search/search" class="search-btn" hover-class="hover">
|
|
<!-- <image class='searchbtn' src="../../img/search-6.png" />搜索房源 -->
|
|
<image class='searchbtn' src="../../img/search-6.png" />搜索房源或输入房源ID
|
|
</navigator>
|
|
<!-- 分类 -->
|
|
<view class="types-tab">
|
|
<navigator class="item" url="/pages/personList/personList" hover-class="hover">
|
|
<view class="img-box">
|
|
<image src="/img/hkperson.jpg"></image>
|
|
</view>
|
|
<!-- <view>香港个人房源</view> -->
|
|
<view>个人房源</view>
|
|
</navigator>
|
|
<navigator class="item" url="/pages/irentList/irentList" hover-class="hover">
|
|
<view class="img-box">
|
|
<image src="/img/hkbrands.jpg"></image>
|
|
</view>
|
|
<view>品牌公寓</view>
|
|
</navigator>
|
|
<!-- <navigator class="item" url="/pages/UK/UK" hover-class="hover">
|
|
<view class="img-box">
|
|
<image src="/img/uk-apartment.png"></image>
|
|
</view>
|
|
<view>英国学生公寓</view>
|
|
</navigator> -->
|
|
<navigator class="item" url="/pages/restOfWorld/restOfWorld" hover-class="hover">
|
|
<view class="img-box">
|
|
<image src="/img/uk-apartment.png"></image>
|
|
<!-- <image src="/img/worldother.jpg"></image> -->
|
|
</view>
|
|
<!-- <view>世界各地房源</view> -->
|
|
<view>求房源</view>
|
|
</navigator>
|
|
<!-- <navigator class="item" url="/pages/chooseLocation/chooseLocation" hover-class="hover"> -->
|
|
<navigator class="item" url="/pages/edit/edit?cityName=香港&alias=Hongkong&uniqid=kbu4a9v7CjzvjJ__vUlA_jYDaTVRHWsf93n0bXfpkc4Q5XuCsk2ubBTz-qLRaUT_87YAS_ET7pf5tt0itORxLtPJJ7C76Q5_qXBATZgDTr_uyuBsaOnC0YA0Gm239lTdshoOpmqksJ85qQMXI_-jSNt7O4wZA5bropLHPIPdq6sX51OVn1WobolXqAcUbe-4mXPFIFpawZNCwmPlLf8e2ZZdkxkmfq_fCw7Pd8jj5rFiJh2_Im7unspYmE8nOO4iePI0wmW9F50tai27VeWj2s2mmGO6kiqhIb3B_Irub_WT3ys-0-1Yvf9oHop6dz0TAXgc6-ReM_tIZDE0NQ~~" hover-class="hover">
|
|
<view class="img-box addhousingresource-icon">
|
|
<view class="addhousingresource-yellow">
|
|
<view class="across"></view>
|
|
<view class="vertical"></view>
|
|
</view>
|
|
</view>
|
|
<view style="color: #ffc05f;">发布房源</view>
|
|
</navigator>
|
|
</view>
|
|
|
|
<!-- 个人房源 -->
|
|
<view class="house-block">
|
|
<navigator url="/pages/personList/personList" hover-class="hover" class="title">
|
|
<view>个人房源</view>
|
|
<view class="more">
|
|
more
|
|
<image src="/img/more-yellow.png"></image>
|
|
</view>
|
|
</navigator>
|
|
<scroll-view scroll-x="true" class="scroll">
|
|
<view class="inner-scroll">
|
|
<block wx:for="{{ HKhousing }}" wx:key="index">
|
|
<block wx:if="{{ index<HKhousing.length-1 }}">
|
|
<!-- 非广告 -->
|
|
<navigator class="item" hover-class="hover" url="/pages/show/show?tid={{ item.tid }}&uniqid={{ item.uniqid }}&cityid=1" wx:if="{{ !advListHKhousing[index+1] }}">
|
|
<view class="card">
|
|
<card-person isads="{{false}}" item="{{ item }}"></card-person>
|
|
</view>
|
|
</navigator>
|
|
<!-- 广告 -->
|
|
<navigator class="item" hover-class="hover" url="/{{ advListHKhousing[index+1].path }}" wx:if="{{ advListHKhousing[index+1] }}">
|
|
<view class="card">
|
|
<card-person bindcloseAd="closeAd" bindclickAD="clickAD" isads="true" item="{{ advListHKhousing[index+1] }}"></card-person>
|
|
</view>
|
|
</navigator>
|
|
</block>
|
|
|
|
</block>
|
|
<navigator class="item" hover-class="hover" url="/pages/personList/personList" wx:if="{{ HKhousing.length>0}}">
|
|
<view class="card">
|
|
<card-person item="{{ HKhousing[HKhousing.length-1] }}"></card-person>
|
|
</view>
|
|
<view class="last-child">
|
|
<view class="btn">查看更多
|
|
<image src="/img/more-white.png"></image>
|
|
</view>
|
|
</view>
|
|
</navigator>
|
|
<view class="right"></view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<!-- 品牌公寓 -->
|
|
<view class="house-block house-brands">
|
|
<navigator url="/pages/irentList/irentList" hover-class="hover" class="title">
|
|
<view>品牌公寓</view>
|
|
<view class="more">
|
|
more
|
|
<image src="/img/more-blue.png"></image>
|
|
</view>
|
|
</navigator>
|
|
<scroll-view scroll-x="true" class="scroll">
|
|
<view class="inner-scroll">
|
|
<block wx:for="{{ HKapartment }}" wx:key="index">
|
|
<navigator class="item" hover-class="hover" url="/pages/irentDetail/irentDetail?uniqid={{item.uniqid}}" wx:if="{{ index<HKapartment.length-1 }}">
|
|
<view class="card">
|
|
<card-brands bindplay="play" item="{{ item }}" index="{{ index }}"></card-brands>
|
|
</view>
|
|
</navigator>
|
|
</block>
|
|
<navigator class="item" hover-class="hover" url="/pages/irentList/irentList" wx:if="{{ HKapartment.length>0}}">
|
|
<view class="card">
|
|
<card-brands bindplay="play" item="{{ HKapartment[HKapartment.length-1] }}"></card-brands>
|
|
</view>
|
|
<view class="last-child">
|
|
<view class="btn">查看更多
|
|
<image src="/img/more-white.png"></image>
|
|
</view>
|
|
</view>
|
|
</navigator>
|
|
<view class="right"></view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
<!-- 世界各地房源 -->
|
|
<view wx:if="{{ otherHousing.length>0 }}" class="house-block world-block">
|
|
<navigator url="/pages/restOfWorld/restOfWorld" hover-class="hover" class="title">
|
|
<!-- <view>世界各地房源</view> -->
|
|
<view>求房源</view>
|
|
<view class="more">
|
|
more
|
|
<image src="/img/more-green.png"></image>
|
|
</view>
|
|
</navigator>
|
|
<scroll-view scroll-x="true" class="scroll">
|
|
<view class="inner-scroll">
|
|
<!-- <block wx:for="{{ otherHousing }}" wx:key="index"> -->
|
|
<block wx:for="{{ findHouseSource }}" wx:key="index">
|
|
<block wx:if="{{ index<otherHousing.length-1 }}">
|
|
<!-- 非广告 -->
|
|
<navigator class="item" hover-class="hover" url="/pages/show/show?tid={{ item.tid }}&uniqid={{ item.uniqid }}" wx:if="{{ !advListotherHousing[index+1] }}">
|
|
<view class="card">
|
|
<card-person world="true" bindclickAD="clickAD" bindcloseAd="closeAd" isads="{{ false }}" item="{{ item }}"></card-person>
|
|
</view>
|
|
</navigator>
|
|
<!-- 广告 -->
|
|
<navigator class="item" hover-class="hover" url="/{{ advListotherHousing[index+1].path}}" wx:if="{{ advListotherHousing[index+1] }}">
|
|
<view class="card">
|
|
<card-person world="true" bindclickAD="clickAD" bindcloseAd="closeAd" isads="{{ true }}" item="{{ advListotherHousing[index+1] }}"></card-person>
|
|
</view>
|
|
</navigator>
|
|
</block>
|
|
|
|
</block>
|
|
<navigator class="item" hover-class="hover" url="/pages/restOfWorld/restOfWorld" wx:if="{{ otherHousing.length>0}}">
|
|
<view class="card">
|
|
<card-person world="true" item="{{ otherHousing[otherHousing.length-1] }}"></card-person>
|
|
</view>
|
|
<view class="last-child">
|
|
<view class="btn">查看更多
|
|
<image src="/img/more-white.png"></image>
|
|
</view>
|
|
</view>
|
|
</navigator>
|
|
<view class="right"></view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<!-- 服务号推广 -->
|
|
<image mode='widthFix' show-menu-by-longpress class="popularize" src="{{ service }}" bindtap="copy"></image>
|
|
<!-- <image mode='widthFix' show-menu-by-longpress class="popularize" src="../../img/1.jpg" bindtap="copy"></image> -->
|
|
|
|
<fix-footer unreadMessages="{{ unreadMessages }}" bottomLift="{{ bottomLift }}"></fix-footer>
|
|
<view class='video-box' wx:if="{{ video }}">
|
|
<!-- <image src="../../img/close.png" class='close' bindtap='close_video'></image> -->
|
|
<video src="{{ video }}" custom-cache="{{false}}" autoplay='true'>
|
|
<cover-view bindtap="closePage" style="top:{{ screen_data.statusBarHeight -5 }}px;height:{{ screen_data.titleBarHeight +10 }}px;width:{{ screen_data.titleBarHeight +10 }}px" class="cover">
|
|
<cover-image class="image" src="/img/close-f.png"></cover-image>
|
|
|
|
</cover-view>
|
|
</video>
|
|
</view>
|
|
|
|
<announcement-popup interface="home" init="{{ initState }}"></announcement-popup>
|
|
</view> |