zhouwx
2024-07-23 678e57afb6db8f89b7807c5bc4e927c778ffc6ca
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
  })
}