|
@@ -183,12 +183,12 @@
|
|
|
</view>
|
|
</view>
|
|
|
<view class="module-det">
|
|
<view class="module-det">
|
|
|
<view class="order-msg-blo">
|
|
<view class="order-msg-blo">
|
|
|
- <!-- 累计退款:金额与「售后记录」并排,避免按钮挡住金额 -->
|
|
|
|
|
|
|
+ <!-- 累计售后:金额与「售后记录」并排,避免按钮挡住金额 -->
|
|
|
<view
|
|
<view
|
|
|
class="msg-list msg-list--with-action"
|
|
class="msg-list msg-list--with-action"
|
|
|
v-if="orderInfo.refundLog == 1 || Number(orderInfo.nextDayTkPrice) > 0 || Number(orderInfo.tkPrice) > 0"
|
|
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">
|
|
<view class="value-wrap">
|
|
|
<text class="value text-danger">¥{{ totalTkPrice }}</text>
|
|
<text class="value text-danger">¥{{ totalTkPrice }}</text>
|
|
|
<button
|
|
<button
|
|
@@ -504,7 +504,7 @@ export default {
|
|
|
if (Number.isNaN(actPrice)) return false
|
|
if (Number.isNaN(actPrice)) return false
|
|
|
return actPrice === 0
|
|
return actPrice === 0
|
|
|
},
|
|
},
|
|
|
- /** 累计退款展示:tkPrice + nextDayTkPrice(对齐 ghs;价格明细「当天售后」仍只用 tkPrice) */
|
|
|
|
|
|
|
+ /** 累计售后展示:tkPrice + nextDayTkPrice(对齐 ghs;价格明细「当天售后」仍只用 tkPrice) */
|
|
|
totalTkPrice() {
|
|
totalTkPrice() {
|
|
|
const day = Number(this.orderInfo && this.orderInfo.tkPrice) || 0
|
|
const day = Number(this.orderInfo && this.orderInfo.tkPrice) || 0
|
|
|
const next = Number(this.orderInfo && this.orderInfo.nextDayTkPrice) || 0
|
|
const next = Number(this.orderInfo && this.orderInfo.nextDayTkPrice) || 0
|