ZhangXianQiang
2024-07-01 4c607a400b6382bfdaa2a51aa06472ee87153cc8
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);
}