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.
46 lines
2.2 KiB
46 lines
2.2 KiB
<!--pages/list/movieticket/list/ticket/index.wxml-->
|
|
<title title="{{title}}"></title>
|
|
<view class="dates-list">
|
|
<view wx:for="{{dates}}" bindtap="changeDateIndex" data-index="{{index}}" class="dates-item {{index==dateIndex?'active':''}}">
|
|
<view class="date-text">{{item.dateShort}}</view>
|
|
<view>{{item.name}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="cinemalist">
|
|
<view class="acitivity-search-box">
|
|
<picker mode="selector" value="{{areaIndex}}" bindchange="changeArea" range="{{areas}}" range-key="area_title">
|
|
<view class="picker">
|
|
<view class="areatext">{{areas[areaIndex].area_title}}</view>
|
|
<image src="https://static.ticket.sz-trip.com/xcxImages/activity/arrow.png" mode="widthFix"></image>
|
|
</view>
|
|
</picker>
|
|
<view class="sort-text{{sort=='distance'?' active':''}}" bindtap="changeSort" data-sort="distance">离我最近</view>
|
|
<view class="sort-text{{sort=='price'?' active':''}}" bindtap="changeSort" data-sort="price">价格最低</view>
|
|
</view>
|
|
<view class="cinema" wx:for="{{list}}" bindtap="gotoDetail2">
|
|
<view class="cinema-title">
|
|
<view class="textOver">{{item.title}}</view>
|
|
<!-- <view class="cinema-price">
|
|
<text>¥</text>
|
|
<text>{{item.min_price/100}}</text>
|
|
<text>起</text>
|
|
</view> -->
|
|
</view>
|
|
<view class="ciname-location textOver">
|
|
<view class="iconfont icon-location"></view>
|
|
<view class="location-text textOver">{{item.address}}</view>
|
|
<view class="ciname-distance" wx:if="{{item.distance}}">{{item.distanceText}}</view>
|
|
</view>
|
|
<view class="tickets-list">
|
|
<view data-info="{{item}}" data-index="{{indexY}}" wx:for-index="indexY" class="ticket-item" data-event="movie_detail_click" wx:for="{{item.schedules}}" wx:for-item="schedule" bindtap="selectMovieSeat">
|
|
<view style="color:#000;font-size:33rpx">{{schedule.show_time}}</view>
|
|
<view style="margin:10rpx 0">{{schedule.show_version}}</view>
|
|
<view style="color:#D62828">¥{{schedule.price}}</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>
|
|
</view>
|