zhouwx
2026-03-12 c74fb6e3cfc1c25c7ef1415c5ae96f57d007850b
src/api/sysUsers.js
@@ -35,6 +35,13 @@
    params: params
  })
}
export function getAgencyListById(params) {
  return request({
    url: '/system/user/getUserById',
    method: 'get',
    params: params
  })
}
// 机构用户详情
export function getAgencyById(params) {
@@ -78,4 +85,40 @@
    method: 'put',
    data: data
  })
}
}
// 专家用户分页
export function getExpertList(params) {
  return request({
    url: '/system/user/expertList',
    method: 'get',
    params: params
  })
}
// 新增
export function addExpert(data) {
  return request({
    url: '/system/user/addExpert',
    method: 'post',
    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
  })
}