Showing
1 changed file
with
7 additions
and
1 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2023-06-21 10:23:09 | 2 | * @Date: 2023-06-21 10:23:09 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-01-25 11:54:34 | 4 | + * @LastEditTime: 2024-01-25 12:02:12 |
| 5 | * @FilePath: /xysBooking/src/views/index.vue | 5 | * @FilePath: /xysBooking/src/views/index.vue |
| 6 | * @Description: 预约页首页 | 6 | * @Description: 预约页首页 |
| 7 | --> | 7 | --> |
| ... | @@ -69,6 +69,12 @@ useTitle($route.meta.title); | ... | @@ -69,6 +69,12 @@ useTitle($route.meta.title); |
| 69 | 69 | ||
| 70 | const go = useGo(); | 70 | const go = useGo(); |
| 71 | 71 | ||
| 72 | +const toBooking = () => { // 跳转到预约须知 | ||
| 73 | + go('/notice'); | ||
| 74 | +} | ||
| 75 | +const toRecord = () => { // 跳转到预约记录 | ||
| 76 | + go('/bookingList'); | ||
| 77 | +} | ||
| 72 | const toCode = () => { // 跳转到预约码 | 78 | const toCode = () => { // 跳转到预约码 |
| 73 | // go('/bookingCode'); | 79 | // go('/bookingCode'); |
| 74 | window.location.replace(location.origin + location.pathname + '#/bookingCode'); | 80 | window.location.replace(location.origin + location.pathname + '#/bookingCode'); | ... | ... |
-
Please register or login to post a comment