21 changed files with 375 additions and 93 deletions
@ -1,28 +1,79 @@ |
|||
<!--pages/order/movie/index.wxml--> |
|||
<title title="订单填写"></title> |
|||
<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.show_time}}-{{product.info.close_time}} {{'('+product.info.show_version+')'}}</view> |
|||
<!-- <view>{{product.info.cinema_title}}</view> --> |
|||
<view>{{product.info.cinemaName}}</view> |
|||
<view>{{product.info.hallName}} <text wx:if="{{product.info.selectSeatInfo}}">{{product.info.selectSeatInfo.seatInfo}}</text></view> |
|||
</view> |
|||
</view> |
|||
<view class="tel-box"> |
|||
<text>手机号码:</text> |
|||
<input value="{{tel}}" type="number" bindinput="changeTel" placeholder="输入您的手机号"></input> |
|||
</view> |
|||
<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.show_time}}-{{product.info.close_time}} {{'('+product.info.show_version+')'}}</view> |
|||
<!-- <view>{{product.info.cinema_title}}</view> --> |
|||
<view>{{product.info.cinemaName}}</view> |
|||
<view>{{product.info.hallName}} <text wx:if="{{product.info.selectSeatInfo}}">{{product.info.selectSeatInfo.seatInfo}}</text></view> |
|||
</view> |
|||
</view> |
|||
|
|||
<view class="tel-box"> |
|||
<text>手机号码:</text> |
|||
<input value="{{tel}}" type="number" bindinput="changeTel" placeholder="输入您的手机号"></input> |
|||
</view> |
|||
</view> |
|||
|
|||
<view class="tips"> |
|||
<view class="tips-box"> |
|||
<image src="https://static.ticket.sz-trip.com/jundaosuzhou/images/cha.png" mode="aspectFit" /> |
|||
<view> |
|||
不支持退票 |
|||
</view> |
|||
</view> |
|||
<view class="tips-box"> |
|||
<image src="https://static.ticket.sz-trip.com/jundaosuzhou/images/cha.png" mode="aspectFit" alt="" /> |
|||
<view> |
|||
不支持改签 |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<coupon money="{{price}}" sku="{{product.product.sku_info.id}}"></coupon> |
|||
|
|||
|
|||
<view class="fix-info {{!hideMx?'hide':''}}"> |
|||
<view class="info-item"> |
|||
<view> |
|||
费用明细 |
|||
</view> |
|||
<view> |
|||
¥{{price/100}} |
|||
</view> |
|||
</view> |
|||
<view class="info-item"> |
|||
<view> |
|||
票价 |
|||
</view> |
|||
<view> |
|||
¥{{sPrice}} x {{num}} |
|||
</view> |
|||
</view> |
|||
<view class="info-item"> |
|||
<view> |
|||
优惠券 |
|||
</view> |
|||
<view> |
|||
- ¥{{coupon?coupon.activity.money/100:0}} |
|||
</view> |
|||
</view> |
|||
<view class="info-item"> |
|||
<view> |
|||
</view> |
|||
<view> |
|||
订单总额:<text style="color: #D62828; font-weight: bold;">¥{{((price - (coupon?coupon.activity.money:0))>0?(price - (coupon?coupon.activity.money:0)):0)/100}}</text> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<view class="fixed-bottom"> |
|||
<view class="money-box"> |
|||
<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> |
|||
<view wx:if="{{coupon}}">总计优惠{{coupon?coupon.activity.money/100:0}}元</view> |
|||
</view> |
|||
<!-- <view class="tip">明细</view> --> |
|||
<view class="btn" bindtap="order">立即付款</view> |
|||
<view class="money-box"> |
|||
<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> |
|||
<view>总计优惠{{coupon?coupon.activity.money/100:0}}元</view> |
|||
</view> |
|||
<view class="tip" bindtap="mingxi">明细</view> |
|||
<view class="btn" bindtap="order">立即付款</view> |
|||
</view> |
|||
Loading…
Reference in new issue