From 4248d4ff01f429ca1daf40666281749239dc5963 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Fri, 8 Dec 2023 14:25:42 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E4=BF=AE=E6=94=B9bug79153?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/search/modules/SearchHistoryModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/search/modules/SearchHistoryModal.vue b/src/views/dashboard/search/modules/SearchHistoryModal.vue index c73ec59e..23fa4718 100644 --- a/src/views/dashboard/search/modules/SearchHistoryModal.vue +++ b/src/views/dashboard/search/modules/SearchHistoryModal.vue @@ -191,7 +191,7 @@ export default { this.dataList = [] this.initData(1) this.indeterminate = !!this.checkedArr.length && this.checkedArr.length < this.dataList.length - this.checkAll = this.checkedArr.length === this.dataList.length + this.checkAll = this.checkedArr.length > 0 && this.checkedArr.length === this.dataList.length } else { this.$message.warning(res.message) }