|
|
|
@ -1,7 +1,8 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="login-container">
|
|
|
|
|
<div>
|
|
|
|
|
<div class="textTitle">
|
|
|
|
|
<h3 class="toptitle">平潭协和医院</h3>
|
|
|
|
|
<h3 class="topSubtitle">医院UDI管理系统</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<el-form
|
|
|
|
|
class="card-box login-form"
|
|
|
|
@ -232,6 +233,32 @@ export default {
|
|
|
|
|
type: "warning",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
this.loading = true;
|
|
|
|
|
if (this.loginForm.rememberMe) {
|
|
|
|
|
Cookies.set("username", this.loginForm.username, { expires: 30 });
|
|
|
|
|
Cookies.set("password", encrypt(this.loginForm.password), {
|
|
|
|
|
expires: 30,
|
|
|
|
|
});
|
|
|
|
|
// Cookies.set('rememberMe', this.loginForm.rememberMe, {expires: 30});
|
|
|
|
|
} else {
|
|
|
|
|
Cookies.remove("username");
|
|
|
|
|
Cookies.remove("password");
|
|
|
|
|
// Cookies.remove('rememberMe');
|
|
|
|
|
}
|
|
|
|
|
this.$store
|
|
|
|
|
.dispatch("Login", this.loginForm)
|
|
|
|
|
.then((res) => {
|
|
|
|
|
this.$router
|
|
|
|
|
.push({ path: this.redirect || "/" })
|
|
|
|
|
.catch((res) => {});
|
|
|
|
|
})
|
|
|
|
|
.catch((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.$message.error(res);
|
|
|
|
|
if (this.captchaEnabled) {
|
|
|
|
|
this.getCode();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
@ -269,6 +296,7 @@ $light_gray: #eee;
|
|
|
|
|
background-size: 100vw 100vh;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
input:-webkit-autofill,
|
|
|
|
|
input:-webkit-autofill:hover,
|
|
|
|
@ -327,14 +355,20 @@ $light_gray: #eee;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
}
|
|
|
|
|
.textTitle {
|
|
|
|
|
width: 50%;
|
|
|
|
|
font-size: 45px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toptitle {
|
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 55px;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
margin: 50px auto 0.5333rem 50px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-top: 132px;
|
|
|
|
|
margin-bottom: -10px;
|
|
|
|
|
}
|
|
|
|
|
.topSubtitle {
|
|
|
|
|
color: #fcd38b;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-form {
|
|
|
|
|