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();
};