// axios.post(“http://192.168.1.5:8080/api/Users/login?UserName=whhw&PassWord=123456”).then(res=>{
// console.log(res); //可以用
// })
// axios.post("http://地址/api/Users/login/",dataqs).then(res=>{
// console.log(res); //可以用
// })
//下面的两种方式是可以的 成功
axios.post("http://地址/api/Users/login/",this.form).then(res=>{
console.log(res); //可以用
})
// checkUser(this.form).then(res =>{
// console.log(res,"登录返回值");
// console.log(2);
// /* 如果满足条件,跳转到home页面 this.$router.push({name:"home"}) 可以用 */
// })
// axios.post(“地址/api/Users/login/”).then(res=>{
// console.log(res); //可以用
// })
// axios.post("http://地址/api/Users/login/",dataqs).then(res=>{
// console.log(res); //可以用
// })
//下面的两种方式是可以的 成功
axios.post("http://地址/api/Users/login/",this.form).then(res=>{
console.log(res); //可以用
})
// checkUser(this.form).then(res =>{
// console.log(res,"登录返回值");
// console.log(2);
// /* 如果满足条件,跳转到home页面 this.$router.push({name:"home"}) 可以用 */
// })