ZhangXianQiang
2024-06-26 6ab6b35fe3ac1ce90711e3555b19dde8ce1e21dc
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);
}