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