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
23 lines
1.4 KiB
<!--pages/list/hotel/index.wxml-->
|
|
<search bind:onload="search"></search>
|
|
<image src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/listtop/hotel_top.png" mode="widthFix" class="topimg"></image>
|
|
<view class="hotel-types">
|
|
<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>
|
|
</view>
|
|
<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}}">
|
|
<!-- <image src="https://fastadmin.oss-cn-shenzhen.aliyuncs.com/xcxImages/listtop/hotel_top_bg.png" mode="widthFix"></image> -->
|
|
<text>TOP{{index+1}}</text>
|
|
</view>
|
|
<view class="infos">
|
|
<view class="textOver">{{item.title}}</view>
|
|
<view class="tags textOver">
|
|
<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>
|
|
</view>
|
|
</view>
|
|
</view>
|