feat: add user settings page

This commit is contained in:
edgex
2024-03-18 12:06:10 +08:00
parent e1432d7af8
commit dd28b8de12
13 changed files with 407 additions and 3 deletions

View File

@@ -38,5 +38,29 @@ export default [
showLink: false,
rank: 103
}
},
{
path: "/user-settings",
name: "UserSettings",
component: () => import("@/layout/components/userSettings/index.vue"),
meta: {
title: $t("buttons.hsUserSettings"),
showLink: false,
rank: 103
},
children: [
{
path: "user-info-manage",
name: "UserInfoManage",
component: () =>
import("@/layout/components/userSettings/userInfoManage.vue")
},
{
path: "safe-manage",
name: "SafeManage",
component: () =>
import("@/layout/components/userSettings/safeManage.vue")
}
]
}
] satisfies Array<RouteConfigsTable>;