From 4793897511f58cdba5e4e8059b73401f74a17027 Mon Sep 17 00:00:00 2001 From: AhJindeg Date: Thu, 11 Apr 2024 11:03:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(UserImportForm):=20=F0=9F=90=9E=20add=20upd?= =?UTF-8?q?ate=20formLoading=20and=20dialogVisible=20to=20submitFormSucces?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/user/UserImportForm.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/system/user/UserImportForm.vue b/src/views/system/user/UserImportForm.vue index 2dda5cec..8447b286 100644 --- a/src/views/system/user/UserImportForm.vue +++ b/src/views/system/user/UserImportForm.vue @@ -105,6 +105,8 @@ const submitFormSuccess = (response: any) => { text += '< ' + username + ': ' + data.failureUsernames[username] + ' >' } message.alert(text) + formLoading.value = false + dialogVisible.value = false // 发送操作成功的事件 emits('success') }