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