From 702f9bc5f1d9b6daab131fe9a7027bef169885d3 Mon Sep 17 00:00:00 2001 From: fawney19 Date: Sun, 28 Dec 2025 19:14:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=BC=93=E5=AD=98?= =?UTF-8?q?=E7=9B=91=E6=8E=A7=E9=A1=B5=E9=9D=A2TTL=E5=88=86=E6=9E=90?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E6=AE=B5=E9=80=89=E6=8B=A9=E5=99=A8=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E6=97=A0=E5=93=8D=E5=BA=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 为 Select 组件添加 v-model:open 绑定,解决 radix-vue Select 组件 在某些情况下点击无响应的问题。 Fixes #55 --- frontend/src/views/admin/CacheMonitoring.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/admin/CacheMonitoring.vue b/frontend/src/views/admin/CacheMonitoring.vue index 4531963..8ae4521 100644 --- a/frontend/src/views/admin/CacheMonitoring.vue +++ b/frontend/src/views/admin/CacheMonitoring.vue @@ -46,6 +46,7 @@ const clearingRowAffinityKey = ref(null) const currentPage = ref(1) const pageSize = ref(20) const currentTime = ref(Math.floor(Date.now() / 1000)) +const analysisHoursSelectOpen = ref(false) // ==================== 模型映射缓存 ==================== @@ -1056,7 +1057,7 @@ onBeforeUnmount(() => {
-