From 89982897d6796d9e974ae69c1c5a63131afbbfff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E7=8E=89=E7=90=A6?= <7507756+jiang_yuqi@user.noreply.gitee.com> Date: Sun, 8 Mar 2026 12:32:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yanzhu-ui-vue3/src/views/system/user/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/yanzhu-ui-vue3/src/views/system/user/index.vue b/yanzhu-ui-vue3/src/views/system/user/index.vue index e29dfe35..31aa649f 100644 --- a/yanzhu-ui-vue3/src/views/system/user/index.vue +++ b/yanzhu-ui-vue3/src/views/system/user/index.vue @@ -393,7 +393,9 @@ function getDeptTree() { deptTreeSelect().then(response => { deptOptions.value = response.data; defaultEK.value.push(response.data[0].id); - getUserWorkType(); + setTimeout(() => { + getUserWorkType(); + }, 1000); }); };