hookehuyr

底部导航栏显示优化

<!--
* @Date: 2024-01-16 10:06:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-25 10:56:14
* @LastEditTime: 2024-01-25 11:56:47
* @FilePath: /xysBooking/src/views/bookingCode.vue
* @Description: 文件描述
-->
......@@ -52,17 +52,13 @@ const $route = useRoute();
const $router = useRouter();
useTitle($route.meta.title);
const toBooking = () => { // 跳转到预约须知
go('/notice');
}
const toRecord = () => { // 跳转到预约记录
go('/bookingList');
}
const toMy = () => { // 跳转到我的
go('/me');
// go('/me');
window.location.replace(location.origin + location.pathname + '#/me');
}
const toHome = () => { // 跳转到我的
go('/');
const toHome = () => { // 跳转到首页
// go('/');
window.location.replace(location.origin + location.pathname + '#/');
}
onMounted(() => {
......
<!--
* @Date: 2023-06-21 10:23:09
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-23 10:01:26
* @LastEditTime: 2024-01-25 11:54:34
* @FilePath: /xysBooking/src/views/index.vue
* @Description: 预约页首页
-->
......@@ -69,17 +69,13 @@ useTitle($route.meta.title);
const go = useGo();
const toBooking = () => { // 跳转到预约须知
go('/notice');
}
const toRecord = () => { // 跳转到预约记录
go('/bookingList');
}
const toCode = () => { // 跳转到预约码
go('/bookingCode');
// go('/bookingCode');
window.location.replace(location.origin + location.pathname + '#/bookingCode');
}
const toMy = () => { // 跳转到我的
go('/me');
// go('/me');
window.location.replace(location.origin + location.pathname + '#/me');
}
onMounted(async () => {
......
<!--
* @Date: 2024-01-16 13:33:36
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-25 10:53:23
* @LastEditTime: 2024-01-25 11:56:22
* @FilePath: /xysBooking/src/views/me.vue
* @Description: 我的页面
-->
......@@ -69,17 +69,13 @@ const $route = useRoute();
const $router = useRouter();
useTitle($route.meta.title);
const toBooking = () => { // 跳转到预约须知
go('/notice');
}
const toRecord = () => { // 跳转到预约记录
go('/bookingList');
}
const toCode = () => { // 跳转到预约码
go('/bookingCode');
// go('/bookingCode');
window.location.replace(location.origin + location.pathname + '#/bookingCode');
}
const toHome = () => { // 跳转到我的
go('/');
const toHome = () => { // 跳转到首页
// go('/');
window.location.replace(location.origin + location.pathname + '#/');
}
const visitorList = ref([]);
......