zhouwx
2024-04-19 4502510c1763590b3d90d9dcc74a99f8f371642f
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
  })
}