shish 19 часов назад
Родитель
Сommit
81893beedb
2 измененных файлов с 7 добавлено и 7 удалено
  1. 6 6
      hdApp/src/admin/order/detail.vue
  2. 1 1
      hdApp/src/admin/order/refundList.vue

+ 6 - 6
hdApp/src/admin/order/detail.vue

@@ -289,6 +289,12 @@
               <view class="value">¥{{ orderInfo.packingFee ? parseFloat(orderInfo.packingFee) : 0 }}</view>
               <view class="value">¥{{ orderInfo.packingFee ? parseFloat(orderInfo.packingFee) : 0 }}</view>
             </view>
             </view>
 
 
+            <!-- 优惠金额 -->
+            <view v-if="orderInfo.discountAmount > 0" class="msg-list">
+              <view class="label">优惠金额:</view>
+              <view class="value">-¥{{ orderInfo.discountAmount ? parseFloat(orderInfo.discountAmount) : 0 }}</view>
+            </view>
+
             <!-- 应付金额 -->
             <!-- 应付金额 -->
             <view class="msg-list" v-if="Number(orderInfo.tkPrice)>0">
             <view class="msg-list" v-if="Number(orderInfo.tkPrice)>0">
               <view class="label">订单金额:</view>
               <view class="label">订单金额:</view>
@@ -303,12 +309,6 @@
               </view>
               </view>
             </view>
             </view>
 
 
-            <!-- 优惠金额 -->
-            <view v-if="orderInfo.discountAmount > 0" class="msg-list">
-              <view class="label">优惠金额:</view>
-              <view class="value">-¥{{ orderInfo.discountAmount ? parseFloat(orderInfo.discountAmount) : 0 }}</view>
-            </view>
-
             <!-- 实际金额 -->
             <!-- 实际金额 -->
             <view class="msg-list">
             <view class="msg-list">
               <view class="label">实际金额:</view>
               <view class="label">实际金额:</view>

+ 1 - 1
hdApp/src/admin/order/refundList.vue

@@ -14,7 +14,7 @@
               <text>类型:{{item.book == 1 ? '预订单多退少补' :'普通'}}</text>
               <text>类型:{{item.book == 1 ? '预订单多退少补' :'普通'}}</text>
               <!-- sameDay=0 隔天售后,否则当天售后(与有无原单无关) -->
               <!-- sameDay=0 隔天售后,否则当天售后(与有无原单无关) -->
               <text :style="Number(item.sameDay) === 0 ? 'color:#e67e22;font-weight:bold;' : ''">
               <text :style="Number(item.sameDay) === 0 ? 'color:#e67e22;font-weight:bold;' : ''">
-                时间:{{ Number(item.sameDay) === 0 ? '隔天售后' : '当天售后' }}
+                原单:{{ Number(item.sameDay) === 0 ? '历史订单' : '当天订单' }}
               </text>
               </text>
 
 
               <text style="position:absolute;right:-425upx;top:0upx;">{{ item.status==0?'退款中':item.status==1?'已完成':'退款中' }}</text>    
               <text style="position:absolute;right:-425upx;top:0upx;">{{ item.status==0?'退款中':item.status==1?'已完成':'退款中' }}</text>