ZhangXianQiang
2024-07-01 6041c2e7281472fb9f86640f58698e1f6d11afb1
1
2
3
4
5
6
7
import service from "@/api";
 
 
export const login = (postData = {}) => {
  console.log(postData);
  return service.post('/api/user/login', postData);
}