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