From f8b56a8c46f6d00acb807c5a5d6a464abefeb3ad Mon Sep 17 00:00:00 2001 From: puhui999 Date: Thu, 23 Nov 2023 09:35:59 +0800 Subject: [PATCH] =?UTF-8?q?crm-=E5=AE=A2=E6=88=B7=EF=BC=9A=E5=85=AC?= =?UTF-8?q?=E6=B5=B7=E6=95=B0=E6=8D=AE=E5=8C=BA=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/crm/customer/index.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/views/crm/customer/index.vue b/src/views/crm/customer/index.vue index 60bc8bea..210691b9 100644 --- a/src/views/crm/customer/index.vue +++ b/src/views/crm/customer/index.vue @@ -208,11 +208,12 @@ const list = ref([]) // 列表的数据 const queryParams = reactive({ pageNo: 1, pageSize: 10, - name: null, - mobile: null, - industryId: null, - level: null, - source: null + pool: false, + name: '', + mobile: '', + industryId: undefined, + level: undefined, + source: undefined }) const queryFormRef = ref() // 搜索的表单 const exportLoading = ref(false) // 导出的加载中 @@ -238,6 +239,7 @@ const handleQuery = () => { /** 重置按钮操作 */ const resetQuery = () => { queryFormRef.value.resetFields() + queryParams.pool = false handleQuery() }