2024-06-24 11:19:51 +00:00
|
|
|
import axios from "axios";
|
2024-06-24 09:15:21 +00:00
|
|
|
|
2024-06-24 11:19:51 +00:00
|
|
|
export default {
|
|
|
|
|
login(username, password, apiUrl="http://localhost:8080"){
|
|
|
|
|
return axios.get(`/checkLogin`, {username:username, password:password})
|
|
|
|
|
.then(response => {
|
|
|
|
|
alert("hahaha");
|
|
|
|
|
// 处理登录成功的逻辑
|
|
|
|
|
return response.data;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|