hookehuyr

fix

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