kongdeqiang
2023-07-02 51c5992bdb5f7b8e988787fed7a883a18f71433e
1
2
3
4
5
6
7
8
9
import { getRequest, postRequest } from "../libs/axios";
 
// 后台用户相关
export const login = params => {
    return postRequest('/login', params);
}
export const getAdminIndex = params => {
    return getRequest('/getAdminIndex', params);
}