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.

27 lines
1.3 KiB

5 years ago
<!--pages/order/movie/index.wxml-->
<title title="订单填写"></title>
5 years ago
<view class="info-box" wx:if="{{product}}">
<view class="info-top">
<image src="{{product.product.headimg}}" mode="aspectFill"></image>
<view class="info">
<view class="title">{{product.info.movieName}}</view>
<view>{{product.info.show_date}} {{product.info.start_end_time}}{{product.info.show_version}}</view>
<view>{{product.info.cinema_title}}</view>
<view>{{product.info.hallName}} <text wx:for="{{product.info.selectSeatInfo}}">{{item.name}}</text></view>
</view>
</view>
<view class="tel-box">
<text>手机号码:</text>
5 years ago
<input value="{{tel}}" type="number" bindinput="changeTel" placeholder="输入您的手机号"></input>
5 years ago
</view>
</view>
<coupon money="{{price}}" sku="{{product.product.sku_info.id}}"></coupon>
<view class="fixed-bottom">
<view class="money-box">
4 years ago
<view class="price" wx:if="{{prizeId}}">¥0</view>
<view class="price" wx:else>¥{{((price - (coupon?coupon.activity.money:0))>0?(price - (coupon?coupon.activity.money:0)):0)/100}}</view>
5 years ago
<view wx:if="{{coupon}}">总计优惠{{coupon?coupon.activity.money/100:0}}元</view>
</view>
<!-- <view class="tip">明细</view> -->
<view class="btn" bindtap="order">立即付款</view>
</view>