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.
34 lines
1.8 KiB
34 lines
1.8 KiB
<!--pages/list/theatre/index.wxml-->
|
|
<wxs src="../../../utils/filter.wxs" module="tool" />
|
|
<view class="my-header-search">
|
|
<search bind:onload="search" transparent="1"></search>
|
|
<image class="heaimg" src="https://static.ticket.sz-trip.com/uploads/20241118/5540525af7880d15a3899f56f9000237.png" mode="widthFix"></image>
|
|
|
|
<view class="sale-types no-scrollbar">
|
|
<view class="sale-type{{type==278?' active':''}}" bindtap="changeType" data-type="1">全部</view>
|
|
<view class="sale-type{{type==2?' active':''}}" bindtap="changeType" data-type="2">距离最近</view>
|
|
<view class="sale-type{{type==3?' active':''}}" bindtap="changeType" data-type="3">销量最高</view>
|
|
<view class="sale-type{{type==4?' active':''}}" bindtap="changeType" data-type="4">价格最低</view>
|
|
<view class="sale-type{{type==3?' active':''}}" bindtap="changeType" data-type="3">销量最高</view>
|
|
<view class="sale-type{{type==4?' active':''}}" bindtap="changeType" data-type="4">价格最低</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
<view style="height:580rpx"></view>
|
|
<view bindtap="gotoDetail" data-item="{{item}}" class="item" wx:for="{{list}}">
|
|
<image src="{{item.headimg}}" mode="aspectFill"></image>
|
|
<view class="info">
|
|
<view class="textOver2 title">{{item.title}}</view>
|
|
<view class="textOver subtitle">{{"开放时间"}}</view>
|
|
<view class="textOver subtitle">{{"地址"}}</view>
|
|
<view class="tags textOver">
|
|
<view class="price"><text>¥</text><text>{{item.price?item.price/100:0}}</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>
|