From 8fa4e0fd4d84ddae311f094b9e2c42625cfa836d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=90=B4=E6=B3=BD=E5=A8=81?= <958142070@qq.com>
Date: Sun, 19 Jan 2025 17:31:56 +0800
Subject: [PATCH] =?UTF-8?q?feat(system/config):=20=E5=A2=9E=E5=8A=A0?=
=?UTF-8?q?=E7=B3=BB=E7=BB=9F=E5=AD=98=E5=82=A8=E9=85=8D=E7=BD=AE=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../config/components/StorageSetting.vue | 241 ++++++++++++++++++
src/views/system/config/index.vue | 5 +
2 files changed, 246 insertions(+)
create mode 100644 src/views/system/config/components/StorageSetting.vue
diff --git a/src/views/system/config/components/StorageSetting.vue b/src/views/system/config/components/StorageSetting.vue
new file mode 100644
index 0000000..72bbca0
--- /dev/null
+++ b/src/views/system/config/components/StorageSetting.vue
@@ -0,0 +1,241 @@
+
+
+
+
+
+
+ 本地存储
+ 对象存储
+
+
+
+
+ 本地存储配置
+
+
+
+
+
+
+
+
+ 对象存储配置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+
+
+
+
+
+ 恢复默认
+
+
+
+
+
+ 保存
+
+
+
+
+
+ 重置
+
+
+
+
+
+ 取消
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue
index 4cd8889..fc3de27 100644
--- a/src/views/system/config/index.vue
+++ b/src/views/system/config/index.vue
@@ -18,6 +18,9 @@
登录配置
+
+ 存储配置
+
@@ -31,6 +34,7 @@ import BasicSetting from './components/BasicSetting.vue'
import SecuritySetting from './components/SecuritySetting.vue'
import MailSetting from './components/MailSetting.vue'
import LoginSetting from './components/LoginSetting.vue'
+import StorageSetting from './components/StorageSetting.vue'
defineOptions({ name: 'SystemConfig' })
@@ -39,6 +43,7 @@ const PanMap: Record = {
2: SecuritySetting,
3: MailSetting,
4: LoginSetting,
+ 5: StorageSetting,
}
const route = useRoute()
--
Gitee