zouyu
2026-04-28 3115fcc80036ec4bfe3a2cd1128c5fdc82a01f42
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
  });
}