zhouwx
2024-06-14 ea55fc721eae712a4e7d103ba9cc569518f096f1
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
  })
}