You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
264 B

import http from "@/utils/request";
class UserAPI {
// test get api
static getUserList(params = {}) {
return http.get("/user/list", {
params,
custom: {
auth: true,
loading: true,
},
});
}
}
export default UserAPI;