fix(config): 修复配置目录选择后未保存的问题
构建上传工具 / build (push) Successful in 2m34s

- 在用户选择目录后调用 writeCheckDir() 方法保存配置
- 确保选中的目录路径能够正确写入到配置文件中
This commit is contained in:
2026-06-29 23:14:45 +08:00
parent 875a6858fe
commit e15debc962
+1
View File
@@ -59,6 +59,7 @@ const selectDirectory = () => {
SelectPath().then((path) => {
if (path) {
checkDir.value = path
writeCheckDir()
} else {
ElMessage.warning('未选择目录,不更改配置')
}