From 2b21ddb99044cb8588d9e5364b053f37a67e8df6 Mon Sep 17 00:00:00 2001 From: dmy Date: Mon, 12 Jan 2026 19:02:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=9D=E5=A7=8B=E5=8C=96=E6=97=B6?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=97=A5=E6=9C=9F=E8=8C=83=E5=9B=B4?= =?UTF-8?q?=E5=8F=98=E5=8C=96=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Dashboard.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/src/components/Dashboard.vue b/frontend/src/components/Dashboard.vue index ff0db3b..76df084 100644 --- a/frontend/src/components/Dashboard.vue +++ b/frontend/src/components/Dashboard.vue @@ -113,6 +113,7 @@ const selectedKeywords = ref([]) const dateRange = ref<[string, string] | null>(null) const crawling = ref(false) const highPriorityCollapsed = ref(false) +const isInitialized = ref(false) // 切换 High Priority Bids 的折叠状态 const toggleHighPriority = () => { @@ -145,6 +146,12 @@ watch(selectedKeywords, (newKeywords) => { // 监听日期范围变化并显示提示 watch(dateRange, () => { + // 初始化时不显示提示 + if (!isInitialized.value) { + isInitialized.value = true + return + } + const totalBids = props.todayBids.length const filteredCount = filteredTodayBids.value.length