Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
xysBooking
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-01-25 11:58:26 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b8c43222dcad1e72de60d7485c2db520582304f0
b8c43222
1 parent
e13a8b3e
底部导航栏显示优化
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
29 deletions
src/views/bookingCode.vue
src/views/index.vue
src/views/me.vue
src/views/bookingCode.vue
View file @
b8c4322
<!--
* @Date: 2024-01-16 10:06:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-25 1
0:56:14
* @LastEditTime: 2024-01-25 1
1: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(() => {
...
...
src/views/index.vue
View file @
b8c4322
<!--
* @Date: 2023-06-21 10:23:09
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-2
3 10:01:26
* @LastEditTime: 2024-01-2
5 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 () => {
...
...
src/views/me.vue
View file @
b8c4322
<!--
* @Date: 2024-01-16 13:33:36
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-01-25 1
0:53:23
* @LastEditTime: 2024-01-25 1
1: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([]);
...
...
Please
register
or
login
to post a comment