Showing
1 changed file
with
2 additions
and
1 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-01-24 16:38:13 | 2 | * @Date: 2024-01-24 16:38:13 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-01-27 11:42:42 | 4 | + * @LastEditTime: 2024-01-27 17:59:31 |
| 5 | * @FilePath: /xysBooking/src/components/reserveCard.vue | 5 | * @FilePath: /xysBooking/src/components/reserveCard.vue |
| 6 | * @Description: 预约记录卡组件 | 6 | * @Description: 预约记录卡组件 |
| 7 | --> | 7 | --> |
| ... | @@ -146,6 +146,7 @@ watch( | ... | @@ -146,6 +146,7 @@ watch( |
| 146 | (val) => { | 146 | (val) => { |
| 147 | if (val) { | 147 | if (val) { |
| 148 | remain_time.value = val.rest_second > 0 ? val.rest_second : 0; | 148 | remain_time.value = val.rest_second > 0 ? val.rest_second : 0; |
| 149 | + reserve_info.value.pay_id = val.pay_id; | ||
| 149 | reserve_info.value.booking_time = val.booking_time; | 150 | reserve_info.value.booking_time = val.booking_time; |
| 150 | reserve_info.value.rest_second = val.rest_second; | 151 | reserve_info.value.rest_second = val.rest_second; |
| 151 | reserve_info.value.status = val.status; | 152 | reserve_info.value.status = val.status; | ... | ... |
-
Please register or login to post a comment