From 29022b5dfb4fa7d1cda11fa32920ced79a6bfbec Mon Sep 17 00:00:00 2001 From: guoapeng Date: Sun, 6 Jul 2025 23:22:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=99=9A=E6=8B=9F?= =?UTF-8?q?=E9=94=AE=E7=9B=98=E6=B8=85=E7=A9=BA=E5=A4=B1=E7=84=A6=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/FTInput/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/common/FTInput/index.vue b/src/components/common/FTInput/index.vue index fbe6b3a..efada2a 100644 --- a/src/components/common/FTInput/index.vue +++ b/src/components/common/FTInput/index.vue @@ -237,6 +237,9 @@ const handleChange = () => { const handleClear = () => { keyboard.value.clearInput() model.value = '' + setTimeout(() => { + ignoreBlur.value = false + }, 150) } const handleEnter = () => { setTimeout(() => { @@ -282,7 +285,7 @@ const handlePopClose = (e: any) => { inputRef.value.focus() } else { - console.log('失去了') + visible.value = false } }