修复仲裁退款并新增免押额度

This commit is contained in:
yml
2026-06-08 21:00:39 +08:00
parent 830cfcf33d
commit 0b419f5084
22 changed files with 559 additions and 72 deletions
@@ -230,7 +230,12 @@ async function copyListingCode(order: Order) {
</div>
<div class="price-item">
<span class="price-label">押金金额</span>
<span class="price-val deposit">¥{{ money(order.deposit_amount) }}</span>
<span class="price-val deposit">
¥{{ money(order.deposit_amount) }}
<em v-if="order.deposit_waived_amount > 0"
> ¥{{ money(order.deposit_waived_amount) }}</em
>
</span>
</div>
</div>
</div>
@@ -500,11 +505,21 @@ async function copyListingCode(order: Order) {
}
.price-val {
display: flex;
flex-direction: column;
align-items: flex-end;
font-size: 15px;
font-weight: 800;
color: #ff5f00;
}
.price-val em {
font-style: normal;
font-size: 10px;
font-weight: 600;
color: #2563eb;
}
.price-val.deposit {
color: #374151;
}