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.
62 lines
2.4 KiB
62 lines
2.4 KiB
<!--pages/order/show/index.wxml-->
|
|
<title title="选择票档"></title>
|
|
<view class="order-top" wx:if="{{product}}">
|
|
<view class="order-name">{{product.title}}</view>
|
|
</view>
|
|
<view class="box">
|
|
<view class="box-content">
|
|
<view class="box-title">选择日期</view>
|
|
<view class="flex-between">
|
|
<view class="tag {{dateindex==0?'active':''}}" bindtap="changeDate" data-date="0">今天 {{dateArr[0].short_date}}</view>
|
|
<view class="tag {{dateindex==1?'active':''}}" bindtap="changeDate" data-date="1">明天 {{dateArr[1].short_date}}</view>
|
|
<view class="tag {{dateindex==2?'active':''}}" bindtap="changeDate" data-date="2">后天 {{dateArr[2].short_date}}</view>
|
|
<view class="tag">更多</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="box-content">
|
|
<view class="box-title">场次</view>
|
|
<view class="flex-wrap flex-between">
|
|
<view wx:for="{{times}}" date-item="{{item}}" class="tag {{dateindex==key?'active':''}} {{item.stock_number<=0?'disabled':''}}"
|
|
bindtap="changeTime" data-date="{{key}}">
|
|
{{item.sale_date}} {{item.week}} {{item.start_time}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="box-content">
|
|
<view class="box-title">票档</view>
|
|
<view class="sku-box">
|
|
<view wx:for="{{times}}" date-item="{{item}}" class="tag {{dateindex==key?'active':''}} {{item.stock_number<=0?'disabled':''}}"
|
|
bindtap="changeSku" data-date="{{key}}">
|
|
{{item.sale_date}} {{item.week}} {{item.start_time}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="number-box box-content">
|
|
<text>数量</text>
|
|
<view class="iconfont icon-sami-select" bindtap="minus"></view>
|
|
<view class="number">{{producNum}}</view>
|
|
<view class="iconfont icon-add-select add" bindtap="add"></view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
<view style="height:138rpx"></view>
|
|
<view class="fixed-bottom">
|
|
<view>总价:<text class="bottom-price">¥560.00</text></view>
|
|
<view class="btns">
|
|
<view class="btn" bindtap="showCart">加入购物车</view>
|
|
<view class="btn" bindtap="showOrder" >立即购买</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<!-- 购物车悬浮框 -->
|
|
<navigator url="/pages/user/cartlist/list" catchtap="pagePoint" data-event='product_cart_click' class="cart-box" id="cart">
|
|
<image src="https://sz-qd.oss-cn-hangzhou.aliyuncs.com/xcxImages/info/cart.png" mode="widthFix"></image>
|
|
<view class="cart-num">{{cartCount}}</view>
|
|
</navigator>
|