|
@@ -404,9 +404,9 @@
|
|
|
<div class="tui-title" style="color:#3385FF;">实际金额</div>
|
|
<div class="tui-title" style="color:#3385FF;">实际金额</div>
|
|
|
<div class="detail-price_box" style="font-size: 34upx;color:#3385FF;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
<div class="detail-price_box" style="font-size: 34upx;color:#3385FF;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
- <!-- 封账退款:不改 realPrice,单独展示;最终金额 = 实际金额 - 封账退款 -->
|
|
|
|
|
|
|
+ <!-- 封账后退款:不改 realPrice,单独展示;最终金额 = 实际金额 - 封账后退款 -->
|
|
|
<tui-list-cell v-if="Number(detailInfo.nextDayTkPrice) > 0" class="line-cell" :hover="false">
|
|
<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>
|
|
<div class="detail-price_box" style="font-size: 28upx;">-¥{{ parseFloat(detailInfo.nextDayTkPrice) }}</div>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
<tui-list-cell v-if="Number(detailInfo.nextDayTkPrice) > 0" class="line-cell" :hover="false">
|
|
<tui-list-cell v-if="Number(detailInfo.nextDayTkPrice) > 0" class="line-cell" :hover="false">
|
|
@@ -466,13 +466,13 @@
|
|
|
<div class="tui-title">实际金额</div>
|
|
<div class="tui-title">实际金额</div>
|
|
|
<div class="detail-price_box" style="font-size: 32upx;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
<div class="detail-price_box" style="font-size: 32upx;">¥{{ parseFloat(detailInfo.realPrice)}}</div>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
- <!-- 封账退款 / 最终金额:与上方价格明细口径一致 -->
|
|
|
|
|
|
|
+ <!-- 封账后退款 / 最终金额:与上方价格明细口径一致 -->
|
|
|
<tui-list-cell
|
|
<tui-list-cell
|
|
|
v-if="(detailInfo.status==3 || detailInfo.status==4) && Number(detailInfo.nextDayTkPrice) > 0"
|
|
v-if="(detailInfo.status==3 || detailInfo.status==4) && Number(detailInfo.nextDayTkPrice) > 0"
|
|
|
class="line-cell"
|
|
class="line-cell"
|
|
|
:hover="false"
|
|
: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>
|
|
<div class="detail-price_box" style="font-size: 28upx;">-¥{{ parseFloat(detailInfo.nextDayTkPrice) }}</div>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
<tui-list-cell
|
|
<tui-list-cell
|
|
@@ -828,8 +828,8 @@ export default {
|
|
|
return parseFloat((day + next).toFixed(2))
|
|
return parseFloat((day + next).toFixed(2))
|
|
|
},
|
|
},
|
|
|
/**
|
|
/**
|
|
|
- * 最终金额:实际金额 realPrice - 封账退款 nextDayTkPrice
|
|
|
|
|
- * 封账退款不改实付字段,用差值给店员看净额
|
|
|
|
|
|
|
+ * 最终金额:实际金额 realPrice - 封账后退款 nextDayTkPrice
|
|
|
|
|
+ * 封账后退款不改实付字段,用差值给店员看净额
|
|
|
*/
|
|
*/
|
|
|
finalPriceAfterSealRefund() {
|
|
finalPriceAfterSealRefund() {
|
|
|
const real = Number(this.detailInfo.realPrice) || 0
|
|
const real = Number(this.detailInfo.realPrice) || 0
|