|
@@ -117,23 +117,33 @@
|
|
|
<view class="goodsName2">
|
|
|
券码信息({{quanMaList.length?quanMaList.length:0}}张可用)
|
|
|
</view>
|
|
|
- <view class="detailedLine" v-for="(v,index) in orderData.OpenSheetQRCode">
|
|
|
-
|
|
|
- <view v-if="v.writeoffState==1" class="detailedName">
|
|
|
- <view class="redPoint"></view>
|
|
|
- <view class="code">{{v.qrCode}}</view>
|
|
|
- <view class="quanState">待使用</view>
|
|
|
-
|
|
|
- </view>
|
|
|
- <view v-if="v.writeoffState==3" class="detailedName">
|
|
|
- <view class="redPoint"></view>
|
|
|
- <view class="code old" >{{v.qrCode}}</view>
|
|
|
- <view class="quanState2">已使用</view>
|
|
|
-
|
|
|
- </view>
|
|
|
-
|
|
|
+ <view class="detailedLineBox" v-for="(v,index) in orderData.OpenSheetQRCode">
|
|
|
+ <view class="detailedLine">
|
|
|
+ <view v-if="v.writeoffState==1" class="detailedName">
|
|
|
+ <view class="redPoint"></view>
|
|
|
+ <view class="code">{{v.qrCode}}</view>
|
|
|
+ <view class="quanState">待使用</view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+ <view v-if="v.writeoffState==3" class="detailedName">
|
|
|
+ <view class="redPoint"></view>
|
|
|
+ <view class="code old" >{{v.qrCode}}</view>
|
|
|
+ <view class="quanState2">已使用</view>
|
|
|
+
|
|
|
+ </view>
|
|
|
<image src="../../../static/img/icon_erweima.png" mode="" style="width: 36rpx;height: 36rpx;"
|
|
|
- v-if="v.writeoffState==1" @click="isShowMaSHow "></image>
|
|
|
+ v-if="v.writeoffState==1" @click="isShowMaSHow"></image>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="writeoffLineBox" v-if="v.writeoffState==3">
|
|
|
+ <view class="writeoffLine">
|
|
|
+ <view class="writeoffLineTxt">核销时间:{{v.writeoffTime}}</view>
|
|
|
+ <view class="writeoffLineTxt">核销人:{{v.writeoffName}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="writeoffLine">
|
|
|
+ <view class="writeoffLineTxt">核销门店:{{v.writeoffShopName?v.writeoffShopName:''}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -201,7 +211,7 @@
|
|
|
</view>
|
|
|
|
|
|
<!-- 核销信息 -->
|
|
|
- <view class="information" v-if="orderData.data.sheetState == 3">
|
|
|
+ <view class="information writeoffXx" v-if="orderData.data.sheetState == 3">
|
|
|
<view class="detailedTitle">核销信息</view>
|
|
|
<view class="informationLine">
|
|
|
<view class="informationTxt">核销状态:</view>
|
|
@@ -212,11 +222,11 @@
|
|
|
|
|
|
<view class="informationLine">
|
|
|
<view class="informationTxt">核销时间:</view>
|
|
|
- <view class="informationNum">{{orderData.data.writeoffTime?orderData.data.writeoffTime:'-'}}</view>
|
|
|
+ <view class="informationNum">{{orderData.data.writeoffTime?orderData.data.writeoffTime:'-'}} {{orderData.data.writeoffName}}</view>
|
|
|
</view>
|
|
|
<view class="informationLine">
|
|
|
<view class="informationTxt">核销门店:</view>
|
|
|
- <view class="informationNum">{{orderData.data.writeoffName?orderData.data.writeoffName:'-'}}</view>
|
|
|
+ <view class="informationNum">{{orderData.data.writeoffShopName?orderData.data.writeoffShopName:'-'}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -225,7 +235,7 @@
|
|
|
|
|
|
<view class="bottom" v-if="orderData.data.sheetState == 1">
|
|
|
<!-- <view class="cancel" @click="cancelBespeak" v-if="orderData.data.groupType==1">取消订单</view> -->
|
|
|
- <view class="cancel" @click="cancelBespeak" v-if="!orderData.data.groupType">取消订单</view>
|
|
|
+ <view class="cancel" @click="cancelBespeak" >取消订单</view>
|
|
|
<view class="defer" :style="{border:'1rpx solid #'+themeColor,color:'#'+themeColor}" @click="pay">立即支付</view>
|
|
|
</view>
|
|
|
<view class="bottom" v-if="orderData.data.sheetState == 2||orderData.data.sheetState == 5">
|
|
@@ -1628,5 +1638,22 @@ color: #764D49;font-size: 26rpx;padding-top:20rpx;
|
|
|
line-height: 70rpx;
|
|
|
text-align: center;
|
|
|
}
|
|
|
+ .writeoffLine{
|
|
|
+ display: flex;justify-content: space-between;
|
|
|
+ color: #999999;font-size: 24rpx;
|
|
|
+ line-height: 33rpx;padding-top: 8rpx;
|
|
|
+ }
|
|
|
+ .writeoffLineBox{
|
|
|
+ padding: 0 20rpx;
|
|
|
+ }
|
|
|
|
|
|
+ .detailedLineBox .detailedLine{
|
|
|
+ padding-bottom: 0rpx;
|
|
|
+ }
|
|
|
+ .writeoffXx .informationNum{
|
|
|
+ width: 500rpx;
|
|
|
+ }
|
|
|
+ .detailedLineBox{
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ }
|
|
|
</style>
|