From c5025e19c37bcb0ec0d07e979ebe9c1ca7840753 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期二, 05 八月 2025 17:29:28 +0800 Subject: [PATCH] fix: 修改功能模块 --- 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