| 123456789101112131415161718192021222324252627282930313233 |
- <view class="listAll">
- <view class="title" style="padding-top:{{navTop}}px;">
- <view class="titles">提交订单</view>
- <view class="back" style="top:{{navTop +5}}px;" bindtap="navigateBack">
- <image src="https://www.icelook.cn/exhibition/images/icon/backBlack.png" mode=""></image>
- </view>
- </view>
- <view class="list">
- <ul>
- <li>
- <view class="left">
- <view class="name">{{exhibition.exhibitionName}}在线语音讲解</view>
- </view>
- <view class="right">
- ¥<span>{{exhibition.preferentialPrice}}</span>
- <text style="color: #666;text-decoration: line-through;padding-left: 20rpx;">¥{{exhibition.originalPrice}}</text>
- </view>
- </li>
- <li>
- <view class="left">
- <view class="name" style="font-size: 42rpx;font-weight: bolder;margin-bottom: 20rpx;"><b>购买须知</b></view>
- <view class="times">您购买的商品为虚拟内容服务,购买后无法退订,购买前请确认。</view>
- <!-- <view class="time" style="color: #C94545;font-size: 28rpx;padding-top: 10rpx;">{{exhibition.exhibitionStartTime}} ~ {{exhibition.exhibitionEndTime}} </view> -->
- <view class="time" style="color: #C94545;font-size: 28rpx;padding-top: 10rpx;">有效时间:支付成功后{{exhibition.payoffTime}}分钟</view>
- </view>
- </li>
- </ul>
- <view class="payment">
- <view class="pay_l">应付<span>¥</span><text>{{exhibition.preferentialPrice}}</text></view>
- <view class="pay_r" bindtap="submit"><button>提交订单</button></view>
- </view>
- </view>
- </view>
|