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.
 

24 lines
1.2 KiB

<!--pages/list/night/index.wxml-->
<search bind:onload="search"></search>
<view class="night-types">
<view class="night-type {{type=='10,11,12'?'active':''}}" bindtap="changeType" data-type="10,11,12">全部</view>
<view class="night-type {{type==10?'active':''}}" bindtap="changeType" data-type="10">线路</view>
<view class="night-type {{type==11?'active':''}}" bindtap="changeType" data-type="11">门票</view>
<view class="night-type {{type==12?'active':''}}" bindtap="changeType" data-type="12">演出</view>
</view>
<view style="height:87rpx"></view>
<view bindtap="gotoDetail" data-item="{{item}}" class="hotel-item" wx:for="{{list}}">
<image mode="widthFix" class="headimg" src="{{item.headimg}}"></image>
<view class="infos">
<view class="textOver">{{item.title}}</view>
<view class="tags textOver">
<view class="tag" wx:for="{{item.tags}}">{{item}}</view>
<view class="price"><text>¥</text><text>{{item.price/100}}</text><text>起</text></view>
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
<image mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
<view>暂无内容</view>
</view>