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.
17 lines
917 B
17 lines
917 B
<!--pages/order/show/index.wxml-->
|
|
<title title="选择场次"></title>
|
|
<view class="order-top" wx:if="{{product}}">
|
|
<view class="order-name">{{product.title}}</view>
|
|
<view class="order-subtitle">{{product.subtitle}}</view>
|
|
</view>
|
|
<view class="box">
|
|
<view class="order-name box-title">场次</view>
|
|
<view wx:for="{{times}}" wx:for-item="date" wx:for-index="dateIndex">
|
|
<view wx:for="{{date.screen}}" bindtap="selectTime" data-dateindex="{{dateIndex}}" data-timeindex="{{index}}" class="order-line-item{{item.is_ticket==0?' disable':''}}{{timeindex==index && dateIndex==dateindex?' active':''}}" ><text>{{date.sale_date}}</text><text>{{item.start_time}} ~ {{item.end_time}}</text> <view class="state">{{item.is_ticket==1?'有票':'售罄'}}</view></view>
|
|
</view>
|
|
|
|
</view>
|
|
<view style="height:138rpx"></view>
|
|
<view class="fixed-bottom">
|
|
<view class="fixed-btn" bindtap="next">下一步</view>
|
|
</view>
|