hookehuyr

fix

<!--
* @Date: 2024-01-15 13:35:51
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-26 15:40:32
* @LastEditTime: 2024-01-26 15:53:13
* @FilePath: /xysBooking/src/views/booking.vue
* @Description: 预约页面
-->
......@@ -52,9 +52,10 @@
<van-icon v-if="checked_time !== index" :name="icon_select1" />&nbsp;
<van-icon v-else :name="icon_select2" />&nbsp;
{{ item.begin_time }}-{{ item.end_time }}
&nbsp;&nbsp;<span style="color: #A67939;">¥&nbsp;{{ item.price }}</span>
</div>
<div class="right">
<span v-if="item.rest_qty"><span style="color: red;">¥{{ item.price }}</span>&nbsp;&nbsp;余量:{{ item.rest_qty }}</span>
<span v-if="item.rest_qty">余量:{{ item.rest_qty }}</span>
<span v-else-if="item.rest_qty === QtyStatus.INFINITY">可约</span>
<span v-else>已约满</span>
</div>
......