修改登录页面弹窗

This commit is contained in:
Cool 2023-11-14 19:16:05 +08:00
parent dbd46076d3
commit d99cf112f7
1 changed files with 20 additions and 10 deletions

View File

@ -169,7 +169,10 @@ export default {
getCode() {
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!emailRegex.test(this.registerForm.email)) {
alert("请输入正确的邮箱");
this.$message({
message: '请输入正确的邮箱',
type: 'warning'
});
}
else {
const TIME_COUNT = 60;
@ -212,9 +215,9 @@ export default {
.then(function (response) {
if (response.data.responseStr !== "No") {
that.$store.commit("setToken", response.data.responseStr);
that.$router.push({ path: "/table" });
that.$router.push({ path: "/home" });
} else {
alert("账号密码错误");
that.$message.error('账号或密码错误');
}
});
@ -227,8 +230,11 @@ export default {
code: that.registerForm.code,
}).then(function (response) {
if (response.data === true) {
alert("验证码正确");
that.$message({
message: '验证码正确',
type: 'success'
});
axiosInstance
.post("/register", {
@ -239,22 +245,26 @@ export default {
})
.then(function (response) {
if (response.data.status === 200) {
alert("注册成功");
that.$message({
message: '注册成功',
type: 'success'
});
} else if (response.data.status === 1001) {
alert("账号已存在");
that.$message.error('账号已存在');
} else if (response.data.status === 1002) {
alert("该邮箱已被注册");
that.$message.error('该邮箱已被注册');
} else {
alert("注册失败")
that.$message.error('注册失败');
}
});
} else if (response.data === false) {
alert("验证码错误");
that.$message.error('验证码错误');
} else {
alert("验证码失效");
that.$message.error('验证码失效');
}
});