From d672ebb9f0f733ca203e92ed3cb2bd3096c22c0a Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 15 五月 2025 14:27:41 +0800
Subject: [PATCH] fix: bug

---
 src/hooks/dic.ts |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/hooks/dic.ts b/src/hooks/dic.ts
index 7ad9f3f..b078ba9 100644
--- a/src/hooks/dic.ts
+++ b/src/hooks/dic.ts
@@ -25,7 +25,7 @@
   const { data, refetch } = useQuery({
     queryKey: [
       'searchSettingServices/getTypeSearchSettingList',
-      { searchType, belongType, isSelf },
+      { searchType, belongType, isSelf, status },
     ],
     queryFn: async () => {
       return await searchSettingServices.getTypeSearchSettingList(
@@ -49,7 +49,7 @@
     return await queryClient.ensureQueryData({
       queryKey: [
         'searchSettingServices/getTypeSearchSettingList',
-        { searchType: searchType, belongType: belongType },
+        { searchType: searchType, belongType: belongType, status },
       ],
     });
   }

--
Gitblit v1.9.1