hookehuyr

fix

<!--
* @Date: 2023-06-21 10:23:09
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-25 11:54:34
* @LastEditTime: 2024-01-25 12:02:12
* @FilePath: /xysBooking/src/views/index.vue
* @Description: 预约页首页
-->
......@@ -69,6 +69,12 @@ useTitle($route.meta.title);
const go = useGo();
const toBooking = () => { // 跳转到预约须知
go('/notice');
}
const toRecord = () => { // 跳转到预约记录
go('/bookingList');
}
const toCode = () => { // 跳转到预约码
// go('/bookingCode');
window.location.replace(location.origin + location.pathname + '#/bookingCode');
......