shish 22 часов назад
Родитель
Сommit
1c49ec1d79
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      hdApp/src/admin/order/detail.vue

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

@@ -183,12 +183,12 @@
         </view>
         <view class="module-det">
           <view class="order-msg-blo">
-            <!-- 累计退款:金额与「售后记录」并排,避免按钮挡住金额 -->
+            <!-- 累计售后:金额与「售后记录」并排,避免按钮挡住金额 -->
             <view
               class="msg-list msg-list--with-action"
               v-if="orderInfo.refundLog == 1 || Number(orderInfo.nextDayTkPrice) > 0 || Number(orderInfo.tkPrice) > 0"
             >
-              <view class="label">累计退款</view>
+              <view class="label">累计售后</view>
               <view class="value-wrap">
                 <text class="value text-danger">¥{{ totalTkPrice }}</text>
                 <button
@@ -504,7 +504,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