From 8e94e3f60a91e536d69e643b4dc13804b79370bc Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期二, 05 八月 2025 17:40:06 +0800
Subject: [PATCH] feat: 页面

---
 src/services/api/dictionary.ts |   19 +++++++++++--------
 1 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/src/services/api/dictionary.ts b/src/services/api/dictionary.ts
index 8ceca42..961750b 100644
--- a/src/services/api/dictionary.ts
+++ b/src/services/api/dictionary.ts
@@ -7,12 +7,15 @@
   body: API.GetDictionaryDatasQuery,
   options?: API.RequestConfig
 ) {
-  return request<API.GetDictionaryDatasQueryResult>('/api/main/dictionary/getDictionaryDatas', {
-    method: 'POST',
-    headers: {
-      'Content-Type': 'application/json-patch+json',
-    },
-    data: body,
-    ...(options || {}),
-  });
+  return request<API.PagedListQueryResultGetDictionaryDatasQueryResultItem>(
+    '/api/main/dictionary/getDictionaryDatas',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json-patch+json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
 }

--
Gitblit v1.9.1