From 014b3c8346fe8575c88026deaa48e049addbc812 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Thu, 20 Nov 2025 17:58:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=A2=E6=88=B7=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=9F=A5=E8=AF=A2=E9=97=AE=E9=A2=98=EF=BC=88=E5=8D=95?= =?UTF-8?q?=E9=80=89=E4=BB=8A=E6=97=A5=E8=B7=9F=E8=BF=9B=E7=9A=84=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/customer/CustomerManagement.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/components/customer/CustomerManagement.vue b/components/customer/CustomerManagement.vue index 1edfb1b..43cfdd4 100644 --- a/components/customer/CustomerManagement.vue +++ b/components/customer/CustomerManagement.vue @@ -269,7 +269,8 @@ const buildQueryParams = () => { ...DEFAULT_SORT, joinUserId: filterSelf.value && currentUserId.value ? currentUserId.value : null, nextFollowDateStart: null, - nextFollowDateEnd: null + nextFollowDateEnd: null, + statusList: undefined }; const hasTodayFollowFilter = selectedFilters.value.includes(TODAY_FOLLOW_FILTER); @@ -299,6 +300,9 @@ const buildQueryParams = () => { if (!hasTodayFollowFilter && statusFilters.length === 0) { console.log('无筛选状态,返回默认参数'); + } else if (hasTodayFollowFilter && statusFilters.length === 0) { + console.log('仅筛选今日跟进,清理状态筛选参数'); + params.statusList = undefined; } return params; @@ -444,7 +448,8 @@ watch(selectedFilters, () => { pageNum: 1, pageSize: PAGE_SIZE, nextFollowDateStart: null, - nextFollowDateEnd: null + nextFollowDateEnd: null, + statusList: undefined }; refresh(); } else {