feat: 添加实名认证功能,更新路由和组件,优化个人设置页面

This commit is contained in:
2026-01-18 02:57:39 +07:00
parent 967b87fc83
commit c2f6af8625
7 changed files with 505 additions and 5 deletions

View File

@@ -42,10 +42,22 @@ const routes: Array<RouteRecordRaw> = [
{
path: "/check_in",
component: () => import("@/views/check_in/index.vue"),
meta: { requiresAuth: true },
},
{
path: "/invite",
component: () => import("@/views/invite/index.vue"),
meta: { requiresAuth: true },
},
{
path: "/settings",
component: () => import("@/views/settings/index.vue"),
meta: { requiresAuth: true },
},
{
path: "/real_name",
component: () => import("@/views/real_name/index.vue"),
meta: { requiresAuth: true },
},
];