From 92034e64c9bb28c262b0fcb90660b58328aa2f5e Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 23 十月 2025 14:35:05 +0800
Subject: [PATCH] fix: bug
---
src/services/api/User.ts | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index fa18799..3afa8af 100644
--- a/src/services/api/User.ts
+++ b/src/services/api/User.ts
@@ -108,6 +108,18 @@
});
}
+/** 鑾峰彇鍏ㄩ儴鐢ㄦ埛涓嬫媺鍒楄〃 POST /api/User/GetUserAllList */
+export async function getUserAllList(body: API.QueryUserPageInput, options?: API.RequestConfig) {
+ return request<API.UserListOutput[]>('/api/User/GetUserAllList', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
/** 鑾峰彇瀹㈡埛浣欓淇℃伅 GET /api/User/GetUserAmountShow */
export async function getUserAmountShow(options?: API.RequestConfig) {
return request<API.UserAmountShowDto>('/api/User/GetUserAmountShow', {
--
Gitblit v1.9.1