diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index fef5d5e..9282d84 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -30,8 +30,7 @@ const hasOrganization = computed(() => { const org = data.organization // ตรวจสอบว่ามีค่าที่ไม่ใช่ null, undefined หรือ string ว่าง - const hasValue = (val: string | null | undefined) => - val && val.trim() !== '' + const hasValue = (val: string | null | undefined) => val && val.trim() !== '' return !!( hasValue(org.root) || @@ -782,6 +781,7 @@ watch( > +
@@ -826,8 +826,23 @@ watch(
+ +
+
+ +
+ *{{ msgCheckTime }} +
+
+
+
@@ -1260,10 +1275,10 @@ watch(
-
+
@@ -1373,10 +1388,10 @@ watch( :loading="inQueue" /> -
+ @@ -1505,4 +1520,18 @@ watch( rgba(2, 169, 152, 1) 100% ); } + +.icon-bounce { + animation: bounce 2s infinite; +} + +@keyframes bounce { + 0%, + 100% { + transform: translateY(0); + } + 50% { + transform: translateY(-10px); + } +}