add image backup function and user information detailed display and editing function

This commit is contained in:
2025-03-27 00:55:35 +08:00
parent 86053b6bd8
commit 8be4aca6db
38 changed files with 4827 additions and 386 deletions

View File

@@ -6,6 +6,8 @@ import AccountSettingHome from "@/views/User/AccountSetting/components/AccountSe
import AccountSettingInfo from "@/views/User/AccountSetting/components/AccountSettingInfo/AccountSettingInfo.vue";
import AccountSettingStorage
from "@/views/User/AccountSetting/components/AccountSettingStorage/AccountSettingStorage.vue";
import AccountSettingBackup
from "@/views/User/AccountSetting/components/AccountSettingBackup/AccountSettingBackup.vue";
export default [
{
@@ -84,6 +86,15 @@ export default [
requiresAuth: true,
title: '存储管理'
},
},
{
path: '/main/user/setting/backup',
name: 'AccountSettingBackup',
component: AccountSettingBackup,
meta: {
requiresAuth: true,
title: '图像备份'
},
}
],
}