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.

22 lines
1.3 KiB

5 years ago
<!--pages/order/showOrder/index.wxml-->
<title title="订单填写"></title>
5 years ago
<view class="order-top" wx:if="{{product}}">
<view class="order-name">{{product.title}}</view>
<view class="order-subtitle">{{product.subtitle}}</view>
<view class="show-datetime">{{product.timeInfo.sale_date}} {{product.timeInfo.screen[0].start_time}} ~ {{product.timeInfo.screen[0].start_time}}</view>
<view class="show-all-price">
<view class="all-price">¥{{product.timeInfo.price/100}}</view>
<view class="all-num">x{{product.seats.length}}</view>
</view>
<view class="seat-list">
<text wx:for="{{product.seats}}">{{item.x}}排{{item.y}}座</text>
</view>
</view>
<contact wx:if="{{product}}" bind:setLinkman="setLinkman" maxNum="{{product.seats.length}}"></contact>
<coupon wx:if="{{product}}" money="{{product.timeInfo.price * product.seats.length}}" sku="{{product.sku[0].id}}"></coupon>
<view style="height:113rpx"></view>
<view class="fixed-bottom">
4 years ago
<view class="price-box" wx:if="{{prizeId}}">订单金额:<text>¥0</text></view>
<view class="price-box" wx:else>订单金额:<text>¥{{((product.timeInfo.price * product.seats.length - (coupon?coupon.activity.money:0))>0?(product.timeInfo.price * product.seats.length - (coupon?coupon.activity.money:0)):0) / 100}}</text></view>
5 years ago
<view class="fixed-btn" bindtap="order">提交订单</view>
</view>