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.

65 lines
3.1 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 lazy-load 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 lazy-load 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=""/>
2 years ago
<view class="number-box">{{productNum}}</view>
<image lazy-load 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=""/>
2 years ago
</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"
3 months ago
money="{{singlePrice * productNum}}" sku="{{product.sku.id}}" couponFlag="{{couponFlag}}" maxCouponObject="{{maxCouponObject}}"></coupon>
2 years ago
3 months ago
<!-- 顺手购组件 -->
<smoothly-order
3 months ago
wx:if="{{product.product.id && !coupon.id}}"
3 months ago
id="smoothlyOrderComp"
productId="{{product.product.id}}"
bind:callOtherComp="callOtherCompMethod"
bind:updateTotalPrice="handleUpdateTotalPrice"
></smoothly-order>
3 months ago
<view style="height:200rpx"></view>
2 years ago
<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>
3 months ago
<!-- <view class="tishi" wx-if="{{coupon.id && smoothlyTotal > 0}}">
<image src="https://static.ticket.sz-trip.com/jundaosuzhou/images/thyh/user/tanhaos.png" mode="aspectFill"></image>
购买须知:使用优惠券的组合订单均不支持部分退款
</view> -->
2 years ago
</view>