ZhangXianQiang
2024-06-25 a02473e11943579fa3ef4c2392624609d1475c0e
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);
}