From e15debc9628fc07e796a1ab574e3a1cee84c00b3 Mon Sep 17 00:00:00 2001 From: YGXB_net Date: Mon, 29 Jun 2026 23:14:45 +0800 Subject: [PATCH] =?UTF-8?q?fix(config):=20=E4=BF=AE=E5=A4=8D=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E7=9B=AE=E5=BD=95=E9=80=89=E6=8B=A9=E5=90=8E=E6=9C=AA?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在用户选择目录后调用 writeCheckDir() 方法保存配置 - 确保选中的目录路径能够正确写入到配置文件中 --- frontend/src/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 060fbb5..f7e2a39 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -59,6 +59,7 @@ const selectDirectory = () => { SelectPath().then((path) => { if (path) { checkDir.value = path + writeCheckDir() } else { ElMessage.warning('未选择目录,不更改配置') }