Some checks failed
PR Preview / test (pull_request) Has been skipped
Deploy Production / test (push) Successful in 5s
Test / unit-test (push) Successful in 5s
PR Preview / teardown-preview (pull_request) Successful in 14s
PR Preview / deploy-preview (pull_request) Has been skipped
Test / build-check (push) Successful in 4s
Deploy Production / deploy (push) Successful in 5s
Test / e2e-test (push) Failing after 1m14s
在 router/index.js 中为需要登录才能访问的路由(manage、inventory、
projects、mydiary、audit、bugs、users)添加 meta.requiresAuth 标记。
在 UserMenu.vue 的 handleLogout() 中检查当前路由是否需要登录,
如果是则 router.push('/') 跳回配方查询页,否则原地 reload。
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
64 lines
1.4 KiB
JavaScript
64 lines
1.4 KiB
JavaScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
|
|
const routes = [
|
|
{
|
|
path: '/',
|
|
name: 'RecipeSearch',
|
|
component: () => import('../views/RecipeSearch.vue'),
|
|
},
|
|
{
|
|
path: '/manage',
|
|
name: 'RecipeManager',
|
|
component: () => import('../views/RecipeManager.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/inventory',
|
|
name: 'Inventory',
|
|
component: () => import('../views/Inventory.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/oils',
|
|
name: 'OilReference',
|
|
component: () => import('../views/OilReference.vue'),
|
|
},
|
|
{
|
|
path: '/projects',
|
|
name: 'Projects',
|
|
component: () => import('../views/Projects.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/mydiary',
|
|
name: 'MyDiary',
|
|
component: () => import('../views/MyDiary.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/audit',
|
|
name: 'AuditLog',
|
|
component: () => import('../views/AuditLog.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/bugs',
|
|
name: 'BugTracker',
|
|
component: () => import('../views/BugTracker.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
{
|
|
path: '/users',
|
|
name: 'UserManagement',
|
|
component: () => import('../views/UserManagement.vue'),
|
|
meta: { requiresAuth: true },
|
|
},
|
|
]
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes,
|
|
})
|
|
|
|
export default router
|