kongdeqiang
2023-07-06 5eca93b1718daef3b91a8bb1c53f0fffeb0fdc96
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);
}