You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.5 KiB

5 years ago
<!--pages/list/six/index.wxml-->
5 years ago
<search bind:onload="search"></search>
<!-- <image src="https://resource.sz-trip.com/uploads/20190831/3ecfcb81bab36027606676737788110c.png" mode="aspectFill" class="topbg"></image> -->
<image src="{{areas[areaIndex].img}}" mode="widthFix" class="bannerImg"></image>
5 years ago
<view class="types-box">
5 years ago
<picker mode="selector" range="{{areas}}" range-key="area_title" bindchange="changeArea">
5 years ago
<view class="picker active">
5 years ago
<view class="areatext">{{areas[areaIndex].area_title}}</view>
5 years ago
<view class="iconfont icon-xia"></view>
</view>
</picker>
5 years ago
<picker mode="selector" range="{{types}}" range-key="type_name" bindchange="changeType">
5 years ago
<view class="picker active">
5 years ago
<view class="areatext">{{types[typeIndex].type_name}}</view>
5 years ago
<view class="iconfont icon-xia"></view>
</view>
</picker>
</view>
<view class="list">
5 years ago
<view class="item" wx:for="{{list}}" bindtap="gotoDetail" data-item="{{item}}">
<image src="{{item.headimg}}" class="main-img" mode="aspectFill"></image>
<view class="textOver2 title">{{item.title}}</view>
<view class="location textOver"><text class="iconfont icon-location"></text>{{item.address}}</view>
<view class="price"><text class="unit">¥</text><text class="number">{{item.price/100}}</text><text>起</text></view>
5 years ago
</view>
5 years ago
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1;top:300rpx">
<image mode="widthFix" src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/other/nodata.png"></image>
<view>暂无内容</view>
5 years ago
</view>