zhouwx
2025-05-20 d80dbcd093573d191053b8c3034acfc47e040ebd
src/api/sysUsers.js
@@ -98,3 +98,20 @@
    data: data
  })
}
// 修改
export function editExpert(data) {
  return request({
    url: '/system/user/editExpert',
    method: 'put',
    data: data
  })
}
// 获取用户详情
export function getUserById(params) {
  return request({
    url: '/system/user/getUserById',
    method: 'get',
    params: params
  })
}