From 756fe8725602220bcd499f8d64d12f88ddf5001a Mon Sep 17 00:00:00 2001 From: lcw <1878680531@qq.com> Date: Tue, 20 Jan 2026 18:21:40 +0800 Subject: [PATCH] lcw --- .../infoCollection/index.vue | 20 +++---------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/src/views/backOfficeSystem/HumanIntelligence/infoCollection/index.vue b/src/views/backOfficeSystem/HumanIntelligence/infoCollection/index.vue index 689082c..9809047 100644 --- a/src/views/backOfficeSystem/HumanIntelligence/infoCollection/index.vue +++ b/src/views/backOfficeSystem/HumanIntelligence/infoCollection/index.vue @@ -45,15 +45,11 @@ 删除 - - - 搜索 - 关闭搜索 - + -
+
@@ -482,20 +478,10 @@ const dologCancel = () => { exportFileModel.value = true; } // 搜索栏 -const search = ref(false) -const openSearch = () => { - search.value = !search.value - nextTick(() => { - tabHeightFn() - }) -} + // 表格高度计算 const tabHeightFn = () => { - if (search.value) { pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 250; - } else { - pageData.tableHeight = window.innerHeight - 250; - } window.onresize = function () { tabHeightFn(); };