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.

23 lines
1.4 KiB

5 years ago
<!--pages/list/hotel/index.wxml-->
5 years ago
<search bind:onload="search"></search>
<image src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/listtop/hotel_top.png" mode="widthFix" class="topimg"></image>
5 years ago
<view class="hotel-types">
5 years ago
<view class="hotel-type{{type==5?' active':''}}" bindtap="changeType" data-type="5">星级酒店</view>
<view class="hotel-type{{type==6?' active':''}}" bindtap="changeType" data-type="6">精品酒店</view>
<view class="hotel-type{{type==7?' active':''}}" bindtap="changeType" data-type="7">经济连锁</view>
<view class="hotel-type{{type==8?' active':''}}" bindtap="changeType" data-type="8">特色民宿</view>
5 years ago
</view>
5 years ago
<view bindtap="gotoDetail" data-item="{{item}}" url="/pages/info/hotelProductInfo/index?id={{item.id}}" class="hotel-item" wx:for="{{list}}">
<image mode="aspectFill" class="headimg" src="{{item.headimg}}"></image>
<view class="top-bg" wx:if="{{index<3}}">
5 years ago
<!-- <image src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/listtop/hotel_top_bg.png" mode="widthFix"></image> -->
5 years ago
<text>TOP{{index+1}}</text>
5 years ago
</view>
<view class="infos">
5 years ago
<view class="textOver">{{item.title}}</view>
5 years ago
<view class="tags textOver">
5 years ago
<view class="tag" wx:for="{{item.display_tags}}">{{item}}</view>
<view class="price"><text>¥</text><text>{{item.price?item.price/100:0}}</text><text>起</text></view>
5 years ago
</view>
</view>
</view>