From 774fcb60353630456f851f45bb33f7e0592e376e Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期三, 18 十月 2023 17:12:07 +0800 Subject: [PATCH] 整合代码 --- Source/UBCS-WEB/src/api/system/dept.js | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Source/UBCS-WEB/src/api/system/dept.js b/Source/UBCS-WEB/src/api/system/dept.js index d05c15d..8e594f5 100644 --- a/Source/UBCS-WEB/src/api/system/dept.js +++ b/Source/UBCS-WEB/src/api/system/dept.js @@ -12,13 +12,15 @@ }) } -export const getLazyList = (parentId, params) => { +export const getLazyList = (parentId, params,current, size,) => { return request({ url: '/api/ubcs-system/dept/lazy-list', method: 'get', params: { ...params, - parentId + parentId, + current, + size } }) } @@ -79,3 +81,10 @@ }) } +export const updateUserStatus = (params) => { + return request({ + url: '/api/ubcs-user/updateUserStatus', + method: 'post', + data: params + }) +} -- Gitblit v1.9.3