|
|
|
@ -76,41 +76,42 @@ export default {
|
|
|
|
|
// });
|
|
|
|
|
// },
|
|
|
|
|
login() {
|
|
|
|
|
if (!this.ruleForm.username) {
|
|
|
|
|
this.$message.error("请输入用户名");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!this.ruleForm.password) {
|
|
|
|
|
this.$message.error("请输入密码");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!this.ruleForm.checkcode) {
|
|
|
|
|
this.$message.error("请输入验证码");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const param = {
|
|
|
|
|
username: this.ruleForm.username,
|
|
|
|
|
password: this.ruleForm.password,
|
|
|
|
|
code: this.ruleForm.checkcode,
|
|
|
|
|
uuid: this.ruleForm.uuid,
|
|
|
|
|
};
|
|
|
|
|
this.$store
|
|
|
|
|
.dispatch("Login", param)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
sessionStorage.setItem("activeIndex", "1");
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "/home/compositeIndex",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.msg);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
//this.$message.error(err.msg)
|
|
|
|
|
this.getCode();
|
|
|
|
|
});
|
|
|
|
|
this.$router.push({name:'home'})
|
|
|
|
|
// if (!this.ruleForm.username) {
|
|
|
|
|
// this.$message.error("请输入用户名");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// if (!this.ruleForm.password) {
|
|
|
|
|
// this.$message.error("请输入密码");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// if (!this.ruleForm.checkcode) {
|
|
|
|
|
// this.$message.error("请输入验证码");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// const param = {
|
|
|
|
|
// username: this.ruleForm.username,
|
|
|
|
|
// password: this.ruleForm.password,
|
|
|
|
|
// code: this.ruleForm.checkcode,
|
|
|
|
|
// uuid: this.ruleForm.uuid,
|
|
|
|
|
// };
|
|
|
|
|
// this.$store
|
|
|
|
|
// .dispatch("Login", param)
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// if (res.code === 200) {
|
|
|
|
|
// sessionStorage.setItem("activeIndex", "1");
|
|
|
|
|
// this.$router.push({
|
|
|
|
|
// path: "/home/compositeIndex",
|
|
|
|
|
// });
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message.error(res.msg);
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// //this.$message.error(err.msg)
|
|
|
|
|
// this.getCode();
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
handleClick() { },
|
|
|
|
|
},
|
|
|
|
|