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.
54 lines
2.5 KiB
54 lines
2.5 KiB
|
2 years ago
|
<!--pages/order/scene/index.wxml-->
|
||
|
|
<view >
|
||
|
|
<title title="订单填写"></title>
|
||
|
|
|
||
|
|
<view class="box" style="padding: 42rpx 21rpx 45rpx 19rpx;display: flex;justify-content: space-between;align-items: center;">
|
||
|
|
<view style="width: 550rpx;">
|
||
|
|
<view style="font-weight: 500;font-size: 36rpx;color: #000000;" class="textOver2">
|
||
|
|
{{product.product.title}}
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="box">
|
||
|
|
<view class="box-title">
|
||
|
|
<view style="flex:1">{{product.sku.sku_name}}</view>
|
||
|
|
<view class="s-price">
|
||
|
|
{{product.sku.price/100}}
|
||
|
|
</view>
|
||
|
|
<image wx:if="{{!kjId && !gp_id && type!='activity' && productNum==1}}" bindtap="minus" style="width: 46rpx;height: 46rpx;" src="https://static.ticket.sz-trip.com/uploads/20240725/d2dce6169a5e8332ccd54579afddf8bc.png" mode=""/>
|
||
|
|
<image wx:if="{{!kjId && !gp_id && type!='activity' && productNum>1}}" bindtap="minus" style="width: 46rpx;height: 46rpx;" src="https://static.ticket.sz-trip.com/uploads/20240725/d8699afa39e73bcc7f50ed617c93bb54.png" mode=""/>
|
||
|
|
<view class="number-box">{{productNum}}</view>
|
||
|
|
<image wx:if="{{!kjId && !gp_id && type!='activity'}}" bindtap="add" style="width: 46rpx;height: 46rpx;" src="https://static.ticket.sz-trip.com/uploads/20240725/cdb68a174f17b7036374580a8aa46641.png" mode=""/>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
<view class="text1">
|
||
|
|
<text wx:for="{{product.sku.display_tags}}">
|
||
|
|
{{item}}<text style="margin:0 8rpx;" wx:if="{{index+1<=product.sku.display_tags.length}}">|</text>
|
||
|
|
</text>
|
||
|
|
<text bindtap="showBookingInfo">预订须知 ></text>
|
||
|
|
</view>
|
||
|
|
<!-- <view class="text2">
|
||
|
|
<text wx:for="{{product.sku.display_tags}}" style="margin-right: 15rpx;">{{item}}</text>
|
||
|
|
</view> -->
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<contact wx:if="{{isLogin}}" type="{{null}}" bind:setLinkman="setLinkman" productNum="{{productNum}}" is_authentication="{{0}}" is_real_name="{{0}}"></contact>
|
||
|
|
|
||
|
|
|
||
|
|
<coupon bind:getNewCoupon = 'getNewCoupon' wx:if="{{!kjId && !gp_id && type!='activity' && product && product.isGroup!=1 && isCar=='single' && type!='museum' && showYhq}}" id="coupon"
|
||
|
|
money="{{singlePrice * productNum}}" sku="{{product.sku.id}}" couponFlag="{{couponFlag}}"></coupon>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<view class="fixed-bottom" >
|
||
|
|
<view class="fixed-price-box" ><text>合计:</text>
|
||
|
|
<text class="price">¥{{price}}</text>
|
||
|
|
</view>
|
||
|
|
<view class="fixed-btn" bindtap="order">提交订单</view>
|
||
|
|
</view>
|
||
|
|
<notice bookingInfo="{{bookingInfo}}" skuName="{{bookingInfoTitle}}" wx:if="{{bookingInfo}}" bind:close="closeMask">
|
||
|
|
</notice>
|
||
|
|
|
||
|
|
</view>
|