hookehuyr

fix

......@@ -14,6 +14,7 @@ declare module '@vue/runtime-core' {
VanCheckboxGroup: typeof import('vant/es')['CheckboxGroup']
VanDatePicker: typeof import('vant/es')['DatePicker']
VanIcon: typeof import('vant/es')['Icon']
VanList: typeof import('vant/es')['List']
VanPicker: typeof import('vant/es')['Picker']
VanPopup: typeof import('vant/es')['Popup']
VanSwipe: typeof import('vant/es')['Swipe']
......
<!--
* @Date: 2024-01-15 13:35:51
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-22 16:48:55
* @LastEditTime: 2024-01-22 18:43:26
* @FilePath: /xysBooking/src/views/booking.vue
* @Description: 预约页面
-->
......@@ -48,7 +48,7 @@
{{ item.begin_time }}-{{ item.end_time }}
</div>
<div class="right">
<span v-if="item.rest_qty > 0">余量:{{ item.price }}</span>
<span v-if="item.rest_qty > 0">余量:{{ item.rest_qty }}</span>
<span v-else-if="item.rest_qty === -1">可约</span>
<span v-else>已约满</span>
</div>
......