shish hace 18 horas
padre
commit
22c1bc98fa

+ 3 - 3
hdApp/src/admin/billing/freeRefundList.vue

@@ -114,9 +114,9 @@
               <text class="meta-label">退还</text>
               <text class="meta-value">{{ fundText(item) }}</text>
             </view>
-            <view class="meta-item" v-if="item.status != 0 && item.sameDay == 0">
-              <text class="meta-label">退款</text>
-              <text class="meta-value" style="color: green;font-weight: bold;">跨天售后</text>
+            <view class="meta-item" v-if="item.status != 0">
+              <text class="meta-label">原单</text>
+              <text class="meta-value">{{ item.sameDay == 0 ? '过去订单' : '当天订单' }}</text>
             </view>
             <view class="meta-item" v-if="item.status != 0">
               <text class="meta-label">操作</text>

+ 2 - 3
hdApp/src/admin/order/refundDetail.vue

@@ -86,11 +86,10 @@
 				</view>
 			</view>
 
-			<!-- 待审核尚未落定 sameDay,不展示;通过后再展示冲减/不冲减口径 -->
 			<template v-if="Number(info.status) !== 0">
 				<view class="refund-row">
-					<view class="refund-label">退款类型</view>
-					<view class="refund-value">{{ info.sameDay === 0 ? '跨天售后' : '当天售后' }}</view>
+					<view class="refund-label">原单类型</view>
+					<view class="refund-value">{{ info.sameDay === 0 ? '过去订单' : '当天订单' }}</view>
 				</view>
 			</template>