田源
2023-10-18 91c536ab7544c466dd93e54d6ffc78646868cf6f
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,13 @@
  })
}
export const updateUserStatus = (params) => {
  return request({
    url: '/api/ubcs-user/updateUserStatus  ',
    method: 'post',
    params:{
      ...params
    }
  })
}