25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <navbar home back text="订单详情"></navbar>
- <view class='order' wx:if="{{showPage}}" style="padding-top:{{navigationBarHeight}}">
- <view wx:if="{{order.orderStatus==1}}" class='tips'>
- <image class='success' src='{{succUrl}}' mode='widthFix'></image>
- <view wx:if="{{order.salePrice/100==0}}" class='msg' >
- <text>交易成功</text>
- <!-- <text>请尽快到门店使用,有效期至{{}}</text> -->
- </view>
- <view wx:if="{{order.salePrice/100!=0}}" class='msg'>
- <text>付款成功</text>
- <!-- <text>请尽快到门店使用,有效期至{{}}</text> -->
- </view>
- </view>
- <view class='section'>
- <view class='sectionTit'>
- <text>{{order.title}}</text>
- </view>
- <view class='detail_msg'>
- <view class='logo'>
- <image mode='aspectFill' src='{{order.coverImg}}'></image>
- </view>
- <view class='info'>
- <view>
- <text>{{order.subTitle}}</text>
- </view>
- <view>
- <text>下单时间:</text>{{createDate}}</view>
- </view>
- </view>
- </view>
- <view class='classif'>
- <!--
- couponOrderStatus
- 0 未使用
- 1 已使用
- 2 已过期
- 3 已经退款
- -->
- <!--
- orderStatus
- 1
- 只有支付完成的时
- 才显示兑换码
- -->
- <view wx:if="{{order.orderStatus==1&&order.type!=100&&order.type!=5&&order.type!=51}}" data-couponOrderStatus="{{order.couponOrderStatus}}" data-title="{{order.title}}" data-subtitle="{{order.subTitle}}" data-remark="{{order.remark}}" data-quancode="{{order.couponOrderId}}" data-validstatus="{{order.validStatus}}" bindtap="powerDrawer" class='dhCode'>
- <view style="width:86%;clear: both;" >
- <text class="fl">兑换码:</text>
- <text class="fr" wx:if="{{order.validStatus!=0}}">{{order.couponOrderId}}</text>
- </view>
- <view>
- <image class="spcode" src="{{spcodeUrl}}" mode='widthFix'></image>
- <image class="rArrow" src="{{chevronUrl}}" mode='widthFix'></image>
- </view>
- </view>
- <!-- <view>
- <text>下单时间</text>
- <text class='fr'>{{createDate}}</text>
- </view> -->
- <view class='dhCode'>
- <text class='bianhao'>订单编号:</text>
- <text>{{order.orderNumber}}</text>
- </view>
- <!-- <view>
- <text wx:if="{{order.type == 8}}">原价</text>
- <text wx:if="{{order.type != 8}}">面额</text>
- <text class="jine1" wx:if="{{order.unit==0}}">{{order.price/100}}元</text>
- <text class="jine1" wx:if="{{order.unit==1}}">{{order.price/100}}小时</text>
- </view> -->
- <view>
- <text class='left'>实付金额:</text>
- <view class='right'>
- <text class='RMB'>¥</text>
- <text class='jine'>{{order.payment/100}}</text>
- </view>
- </view>
- </view>
- <view class='classifShop'>
- <view class="clearfix" bindtap='showDoorList'>
- <text>适用门店</text>
- </view>
- <view wx:if="{{order.merchantVoList.length>=1}}" wx:for="{{order.merchantVoList}}" wx:key="{{index}}">
- <view class='merchantVoList'>
- <image bindtap='gotoDetail' data-id='{{item.id}}' class='merchantImgUrl' src='{{item.merchantImgUrl}}' mode='widthFix'></image>
- <view bindtap='gotoDetail' data-id='{{item.id}}' class='merchantName'>{{item.merchantName}} {{item.buildingName}}{{item.floorName}}</view>
- <image wx:if="{{item.linkLinePhone}}" bindtap='phone' data-merchantlinkphone='{{item.linkLinePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix"></image>
- </view>
- </view>
- </view>
- <!-- 待付款 显示立即购买的按钮 -->
- <view wx:if="{{order.orderStatus==0&&order.salePrice!=0||order.orderStatus==7&&order.salePrice!=0}}" class="buy-view app-border-top">
- <button bindtap='orderFunc' hover-class='active' data-couponChannelId="{{order.id}}" disabled='{{showButton}}' class='buy'>立即支付</button>
- </view>
- <view class='game' bindtap="gotogame" wx-if="{{showIf&&order.orderStatus!=0}}">
- <view class='game-entry'>
- <image src="{{newUrl}}" class='gameimg' mode='widthFix'></image>
- </view>
- </view>
- <button type="primary" open-type="share" wx:if="{{order.type == 100 && supportTransfer==1&&cardIf}}" class='support-tansfer'><image src="{{weixinTitle}}" class='share' mode="widthFix"></image>转赠给微信好友</button>
- </view>
|