Showing
1 changed file
with
3 additions
and
2 deletions
| 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-20 10:50:39 | 4 | + * @LastEditTime: 2024-01-22 10:24:44 |
| 5 | * @FilePath: /xysBooking/src/views/booking.vue | 5 | * @FilePath: /xysBooking/src/views/booking.vue |
| 6 | * @Description: 预约页面 | 6 | * @Description: 预约页面 |
| 7 | --> | 7 | --> |
| ... | @@ -24,7 +24,8 @@ | ... | @@ -24,7 +24,8 @@ |
| 24 | <div v-if="findDatesInfo(date).date"> | 24 | <div v-if="findDatesInfo(date).date"> |
| 25 | <p class="day-text">{{ findDatesInfo(date).text }}</p> | 25 | <p class="day-text">{{ findDatesInfo(date).text }}</p> |
| 26 | <p v-if="!findDatesInfo(date).reserve_full" class="day-price">¥{{ findDatesInfo(date).price }}</p> | 26 | <p v-if="!findDatesInfo(date).reserve_full" class="day-price">¥{{ findDatesInfo(date).price }}</p> |
| 27 | - <p v-else class="day-no-booking">已约满</p> | 27 | + <!-- <p v-else class="day-no-booking">已约满</p> --> |
| 28 | + <p v-else class="day-no-booking">¥{{ findDatesInfo(date).price }}</p> | ||
| 28 | </div> | 29 | </div> |
| 29 | </div> | 30 | </div> |
| 30 | </div> | 31 | </div> | ... | ... |
-
Please register or login to post a comment