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