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.
 

99 lines
3.6 KiB

<!--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>
<view class="tips">
<view class="tips-box">
<image src="https://static.ticket.sz-trip.com/jundaosuzhou/images/cha1.png" mode="aspectFit" />
<view>
不支持退票
</view>
</view>
<view class="tips-box">
<image src="https://static.ticket.sz-trip.com/jundaosuzhou/images/cha1.png" mode="aspectFit" alt="" />
<view>
不支持改签
</view>
</view>
</view>
<view class="tel-box">
<text>手机号码:</text>
<input value="{{tel}}" type="number" bindinput="changeTel" placeholder="输入您的手机号"></input>
</view>
<coupon bind:getNewCoupon='getNewCoupon' 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>总计优惠{{coupon?coupon.activity.money/100:0}}元</view>
</view>
<view class="tip" bindtap="mingxi">明细</view>
<view class="btn" bindtap="closeModel">立即付款</view>
</view>
<view class="mask" wx:if="{{showModel}}">
<view class="model">
<image bindtap="closeModel" class="close-img" src="https://static.ticket.sz-trip.com/uploads/20230725/e63b0a4ec4063bb92767690bbf857bb9.png" mode="" />
<view class="model-title">
退改须知
</view>
<view class="model-content">
<text>该产品一经购买,不支持退票/改签,</text> 您的订单页面会显示【不支持退票】【不支持改签】提示,此时 <text>平台无法为您处理退。</text> 请您提前规划好出行时间,按时观影。
</view>
<view class="select-btn" bindtap="changeAgree">
<image src="{{agree?'https://static.ticket.sz-trip.com/uploads/20230725/9eda0f72b566f904b40c1a493b3c4c44.png':'https://static.ticket.sz-trip.com/uploads/20230725/0f6634ada1fc348a10a818b6f77239cd.png'}}" mode="aspectFill" />
<view class="select-text">
我已认可此规则
</view>
</view>
<view class="btn-send {{agree?'send':''}}" bindtap="order">
继续购票
</view>
<view class="btn-close" bindtap="closeModel">
暂不购票
</view>
</view>
</view>