Commit c05b86da authored by youjie's avatar youjie

no message

parent a0525108
......@@ -31,6 +31,7 @@
<q-td>
<div class="td-item">{{ $t('hotel.table.price') }}</div>
<div class="td-item">{{ $t('hotel.table.ins') }}</div>
<div class="td-item">{{ $t('hotel.table.confirm') }}</div>
<div class="td-item">{{ $t('hotel.table.limit') }}</div>
</q-td>
<q-td v-for="x in props.row.subList" @click="showOrderSubmitHandler(props.row,x)">
......@@ -46,6 +47,9 @@
<div class="td-item cursor-pointer">
{{ x.Inventory }}/{{ x.UseInventory }}/{{ x.RemainingInventory }}
</div>
<div class="td-item">
{{ x.ConfirmNum }}/{{ x.ReserveNum }}
</div>
<div class="td-item" :class="{ 'bg-red-9 text-white': x.UseInventory - x.Inventory > 0 }">
<span v-if="x.UseInventory - x.Inventory > 0">
{{ x.UseInventory - x.Inventory }}
......
......@@ -281,6 +281,7 @@ export default {
table: {
price: "價格(標準間)",
ins: "總/用/剩",
confirm: "確認/預定",
limit: "超定"
},
rooms: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment