feat: 添加实名认证功能,更新路由和组件,优化个人设置页面
This commit is contained in:
@@ -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 },
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user