zouyu
2026-04-29 b8db59d4774ce0134f06500400a3723962a1c4b6
src/api/system/user.js
@@ -155,7 +155,7 @@
  return request({
    url: "/companies/addPersonUser",
    method: "post",
    params: data,
    data: data,
  });
}
// 获取角色
@@ -195,3 +195,29 @@
    params: query,
  });
}
// 获取用户列表
export function selectAllUser() {
  return request({
    url: "/system/newUser/selectAllUser",
    method: "get",
  });
}
// 获取用户列表
export function selectUserListByPerformance(query) {
  return request({
    url: "/system/newUser/selectUserListByPerformance",
    method: "get",
    params:query
  });
}
// 更新用户排序
export function updateUserSort(data) {
  return request({
    url: "/system/newUser/updateUserSort",
    method: "post",
    data:data
  });
}