From 4c72dd4e55dbfae3dca4a7ac4342220e93f25a8b Mon Sep 17 00:00:00 2001
From: yubo <autumnal_wind@yeah.net>
Date: 星期三, 11 三月 2026 18:04:07 +0800
Subject: [PATCH] feat(dashboard): 添加四险提醒功能并优化员工管理界面

---
 src/views/dashboard/ctUser.vue |   32 +++++++++++++++++---------------
 1 files changed, 17 insertions(+), 15 deletions(-)

diff --git a/src/views/dashboard/ctUser.vue b/src/views/dashboard/ctUser.vue
index 8846878..1336805 100644
--- a/src/views/dashboard/ctUser.vue
+++ b/src/views/dashboard/ctUser.vue
@@ -129,21 +129,23 @@
     }
   },
   mounted() {
-    this.getDicts('EDUCATION').then(response => {
-      this.educationOptions = response.data
-    })
-    this.getDicts('NATIVEPLACE').then(response => {
-      this.nativePlaceOptions = response.data
-    })
-    this.getDicts('sex').then(response => {
-      this.sexOptions = response.data
-    })
-    this.getDicts('empType').then(response => {
-      this.empTypeOptions = response.data
-    })
-    this.getDicts('NATION').then(response => {
-      this.nationOptions = response.data
-    })
+    setTimeout(() => {
+      this.getDicts('EDUCATION').then(response => {
+        this.educationOptions = response.data
+      })
+      this.getDicts('NATIVEPLACE').then(response => {
+        this.nativePlaceOptions = response.data
+      })
+      this.getDicts('sex').then(response => {
+        this.sexOptions = response.data
+      })
+      this.getDicts('empType').then(response => {
+        this.empTypeOptions = response.data
+      })
+      this.getDicts('NATION').then(response => {
+        this.nationOptions = response.data
+      })
+    }, 1000)
   },
   methods: {
     educationFormat(row, column) {

--
Gitblit v1.8.0