shish 19 часов назад
Родитель
Сommit
bcc15eb91e

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

@@ -116,7 +116,7 @@
             </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>
+              <text class="meta-value" style="color: green;font-weight: bold;">跨天售后</text>
             </view>
             <view class="meta-item" v-if="item.status != 0">
               <text class="meta-label">操作</text>
@@ -211,7 +211,7 @@ export default {
       startTime: '',
       endTime: '',
       totalAmount: 0,
-      // -1全部 1当天退款 0跨天退款
+      // -1全部 1当天售后 0跨天售后
       sameDay: -1,
       customId: 0,
       searchList: [],
@@ -228,8 +228,8 @@ export default {
       ],
       sameDayOptions: [
         { label: '全部', value: -1 },
-        { label: '当天退款', value: 1 },
-        { label: '跨天退款', value: 0 }
+        { label: '当天售后', value: 1 },
+        { label: '跨天售后', value: 0 }
       ]
     }
   },

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

@@ -295,9 +295,9 @@
               <view class="value">¥{{ orderInfo.orderPrice ? parseFloat(orderInfo.orderPrice) : 0 }}</view>
             </view>
 
-            <!-- 当天退款(仅影响 actPrice 的当日部分;隔天在累计退款里) -->
+            <!-- 当天售后(仅影响 actPrice 的当日部分;隔天在累计退款里) -->
             <view class="msg-list" v-if="Number(orderInfo.tkPrice)>0">
-              <view class="label">当天退款:</view>
+              <view class="label">当天售后:</view>
               <view class="value" style="color:red;">
                 -¥{{ orderInfo.tkPrice ? parseFloat(orderInfo.tkPrice) : 0 }}
               </view>
@@ -488,7 +488,7 @@ export default {
       if (Number.isNaN(actPrice)) return false
       return actPrice === 0
     },
-    /** 累计退款展示:tkPrice + nextDayTkPrice(对齐 ghs;价格明细「当天退款」仍只用 tkPrice) */
+    /** 累计退款展示:tkPrice + nextDayTkPrice(对齐 ghs;价格明细「当天售后」仍只用 tkPrice) */
     totalTkPrice() {
       const day = Number(this.orderInfo && this.orderInfo.tkPrice) || 0
       const next = Number(this.orderInfo && this.orderInfo.nextDayTkPrice) || 0

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

@@ -90,7 +90,7 @@
 			<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-value">{{ info.sameDay === 0 ? '跨天售后' : '当天售后' }}</view>
 				</view>
 			</template>
 

+ 5 - 5
hdApp/src/pagesPurchase/purDetails.vue

@@ -253,7 +253,7 @@
             <div class="detail-price_box" style="font-size: 28upx;">¥{{ detailInfo.orderPrice?parseFloat(detailInfo.orderPrice):0}}</div>
           </tui-list-cell>
           <tui-list-cell class="line-cell" :hover="false" v-if="detailInfo.tkPrice > 0">
-            <div class="tui-title">当天退款</div>
+            <div class="tui-title">当天售后</div>
             <div class="detail-price_box" style="font-size: 28upx;">-¥{{ detailInfo.tkPrice?parseFloat(detailInfo.tkPrice):0}}</div>
           </tui-list-cell>
           <tui-list-cell class="line-cell" :hover="false" v-if="detailInfo.orderReachDiscountPrice > 0">
@@ -264,9 +264,9 @@
             <div class="tui-title">实际金额</div>
             <div class="detail-price_box" style="font-size: 28upx;">¥{{ detailInfo.realPrice ? parseFloat(detailInfo.realPrice) : 0}}</div>
           </tui-list-cell>
-          <!-- 跨天退款不改 realPrice;最终金额 = 实际金额 - 跨天退款 -->
+          <!-- 跨天售后不改 realPrice;最终金额 = 实际金额 - 跨天售后 -->
           <tui-list-cell v-if="Number(detailInfo.nextDayTkPrice) > 0" class="line-cell" :hover="false">
-            <div class="tui-title">跨天退款</div>
+            <div class="tui-title">跨天售后</div>
             <div class="detail-price_box" style="font-size: 28upx;">-¥{{ parseFloat(detailInfo.nextDayTkPrice) }}</div>
           </tui-list-cell>
           <tui-list-cell v-if="Number(detailInfo.nextDayTkPrice) > 0" class="line-cell" :hover="false">
@@ -415,14 +415,14 @@ export default {
 	},
   computed: {
     ...mapGetters({loginInfo:"getLoginInfo"}),
-    /** 累计退款展示:tkPrice + nextDayTkPrice(价格明细「当天退款」只用 tkPrice,因影响 actPrice) */
+    /** 累计退款展示:tkPrice + nextDayTkPrice(价格明细「当天售后」只用 tkPrice,因影响 actPrice) */
     totalTkPrice() {
       const day = Number(this.detailInfo.tkPrice) || 0
       const next = Number(this.detailInfo.nextDayTkPrice) || 0
       return parseFloat((day + next).toFixed(2))
     },
     /**
-     * 最终金额:实际金额 realPrice - 跨天退款 nextDayTkPrice
+     * 最终金额:实际金额 realPrice - 跨天售后 nextDayTkPrice
      */
     finalPriceAfterSealRefund() {
       const real = Number(this.detailInfo.realPrice) || 0