按实际纯币金额计算租客优惠与积分
This commit is contained in:
@@ -68,6 +68,7 @@ const {
|
||||
listingCode,
|
||||
orderAmountLabel,
|
||||
orderRentDisplayAmount,
|
||||
renterDiscountDisplayCent,
|
||||
ownerIncomeDisplayAmount,
|
||||
ownerIncomeLabel,
|
||||
canOpenDispute,
|
||||
@@ -388,12 +389,9 @@ watch([() => route.query.focus, order, loading], () => {
|
||||
<div class="metric-card highlight">
|
||||
<span class="metric-label">{{ orderAmountLabel }}</span>
|
||||
<strong class="metric-value amount">¥{{ money(orderRentDisplayAmount) }}</strong>
|
||||
<span
|
||||
v-if="isRenter && Number(order.rent_discount_amount_cent || 0) > 0"
|
||||
class="metric-note"
|
||||
>
|
||||
<span v-if="isRenter && renterDiscountDisplayCent > 0" class="metric-note">
|
||||
{{ order.renter_growth_level_name || '成长等级' }}优惠 ¥{{
|
||||
money(amountYuan(order.rent_discount_amount_cent))
|
||||
money(amountYuan(renterDiscountDisplayCent))
|
||||
}}
|
||||
</span>
|
||||
</div>
|
||||
@@ -410,6 +408,22 @@ watch([() => route.query.focus, order, loading], () => {
|
||||
>已免押 ¥{{ money(amountYuan(order.deposit_waived_amount_cent)) }}</span
|
||||
>
|
||||
</div>
|
||||
<div
|
||||
v-if="isRenter && order.status === 'completed' && !order.checkout"
|
||||
class="metric-card"
|
||||
>
|
||||
<span class="metric-label">实际纯币原价</span>
|
||||
<strong class="metric-value amount"
|
||||
>¥{{ money(amountYuan(order.actual_pure_coin_amount_cent)) }}</strong
|
||||
>
|
||||
</div>
|
||||
<div
|
||||
v-if="isRenter && order.status === 'completed' && !order.checkout"
|
||||
class="metric-card income"
|
||||
>
|
||||
<span class="metric-label">本单成长积分</span>
|
||||
<strong class="metric-value">+{{ order.growth_points_awarded || 0 }}</strong>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="order" class="info-section">
|
||||
|
||||
Reference in New Issue
Block a user