From 0a350c9c2c3438e3647036c5bcbe5abada14be1b Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Tue, 23 Jul 2024 10:34:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E8=80=85api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/user/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index 4161dd29e..926b8068f 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -103,4 +103,9 @@ export const updatePassword = (data : UserVO) => { export const getUserListByDeptIds = (data : Array) => { return request.post({ url: '/system/user/getUserListByDeptIds', data }) } +// 获取全部用户 +export const getUserListAll = () => { + return request.get({ url: '/system/user/listAll' }) +} +