xiangpei
2024-10-17 c3c523b8f25ecb9cc8bc18c058393e8ef48321c7
src/api/modules/user.js
@@ -1,6 +1,11 @@
import service from "@/api";
// 登录请求
export const login = (postData = {}) => {
  return service.post('/api/user/login', postData);
}
// 退出登录
export const logout = () => {
    return service.post('/api/user/logout');
}