From bfd57881718da1343ea243e3664c347920f2b872 Mon Sep 17 00:00:00 2001 From: yaojn Date: Tue, 14 Nov 2023 14:39:51 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E4=BF=AE=E5=A4=8D]=E8=B5=84=E4=BA=A7?= =?UTF-8?q?=E6=B8=85=E5=8D=95-=E6=90=9C=E7=B4=A2=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E7=9A=84=E6=9D=A1=E4=BB=B6=E6=A0=87=E7=AD=BE=E5=9B=9E=E6=98=BE?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=20=20-=20[=E5=85=B3=E8=81=94]#[1024464953769?= =?UTF-8?q?984]=E8=B5=84=E4=BA=A7=E6=B8=85=E5=8D=95-=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E7=9A=84=E6=9D=A1=E4=BB=B6=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E5=9B=9E=E6=98=BE=E5=BC=82=E5=B8=B8=20http://192.168.0.96:8090?= =?UTF-8?q?/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1024?= =?UTF-8?q?464953769984?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CombineSearcher/CombineSearcher.vue | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/resources/components/CombineSearcher/CombineSearcher.vue b/src/resources/components/CombineSearcher/CombineSearcher.vue index 0ff463ab..f9a0280e 100644 --- a/src/resources/components/CombineSearcher/CombineSearcher.vue +++ b/src/resources/components/CombineSearcher/CombineSearcher.vue @@ -628,16 +628,16 @@ export default { handler() { // 点击关闭时,清空没有搜索的值 if (this.searchMode == 'clickBtnSearch' && !this.isVisible) { - for (let key in this.searchValue) { - if (key && !this.totalText.hasOwnProperty([key])) { - this.$delete(this.searchValue, key); - this.$delete(this.textConfig, key); - this.$delete(this.totalText, key); - } - } - let fullSearch = this.getFullSearch(); - this.$emit('update:value', fullSearch); - this.$emit('close', fullSearch); + // for (let key in this.searchValue) { + // if (key && !this.totalText.hasOwnProperty([key])) { + // this.$delete(this.searchValue, key); + // this.$delete(this.textConfig, key); + // this.$delete(this.totalText, key); + // } + // } + // let fullSearch = this.getFullSearch(); + // this.$emit('update:value', fullSearch); + // this.$emit('close', fullSearch); } }, deep: true -- Gitee