From 4516d83ce4e7ec9c64c7485fdca6d9ea42bcb67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E6=80=80=E7=A3=8A=E2=80=9D?= <2280131253@qq.com> Date: Thu, 20 Jan 2022 14:56:14 +0800 Subject: [PATCH 1/6] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E6=A1=86=E4=B8=8D=E8=83=BD=E6=90=9C=E7=B4=A2false=E9=80=89?= =?UTF-8?q?=E9=A1=B9=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TagSearch/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/TagSearch/index.vue b/src/components/TagSearch/index.vue index 01b346110..f10f619d3 100644 --- a/src/components/TagSearch/index.vue +++ b/src/components/TagSearch/index.vue @@ -206,7 +206,7 @@ export default { return true }, handleConfirm() { - if (!this.filterValue) return + if (this.filterValue === '') return if (this.filterValue && !this.filterKey) { this.filterKey = 'search' } From 7b705dfc7546a851de92da0c13da402dc0ba57cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E6=80=80=E7=A3=8A=E2=80=9D?= <2280131253@qq.com> Date: Fri, 21 Jan 2022 18:32:15 +0800 Subject: [PATCH 2/6] =?UTF-8?q?perf:=20=E8=A1=A8=E5=8D=95=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E6=BB=9A=E5=8A=A8=E5=88=B0=E6=A0=A1=E9=AA=8C=E5=87=BA?= =?UTF-8?q?=E9=94=99=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/DataForm/index.vue | 2 ++ src/utils/index.js | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/src/components/DataForm/index.vue b/src/components/DataForm/index.vue index 512db93d4..f02e9c28c 100644 --- a/src/components/DataForm/index.vue +++ b/src/components/DataForm/index.vue @@ -23,6 +23,7 @@