修复仲裁退款并新增免押额度
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user