1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

Merge ade35786b4f13b9e525920f8c926643cc091c460 into 6858a9ad67483025f6a9432a926beb9327037be3

This commit is contained in:
Zong Fan 2024-11-04 22:32:39 +08:00 committed by GitHub
commit 5b8413ee6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,10 @@
</el-form-item>
</el-tooltip>
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">Login</el-button>
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">
<span v-if="!loading">Login</span>
<span v-else>Logging in...</span>
</el-button>
<div style="position:relative">
<div class="tips">
@ -88,13 +91,16 @@ export default {
callback()
}
}
// 使
const validatePassword = (rule, value, callback) => {
if (value.length < 6) {
callback(new Error('The password can not be less than 6 digits'))
} else {
callback()
}
if (value.length < 6) {
callback(new Error('The password can not be less than 6 digits'));
} else if (!/[a-z]/.test(value) ||!/[A-Z]/.test(value)) {
callback(new Error('The password should contain both uppercase and lowercase letters'));
} else {
callback();
}
};
return {
loginForm: {
username: 'admin',
@ -209,11 +215,30 @@ $light_gray:#fff;
$cursor: #fff;
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
.login-container .el-input input {
.login-container.el-input input {
color: $cursor;
}
}
input[type="password"]::-ms-reveal {
display: none; /* 对于IE */
}
input[type="password"]::-ms-clear {
display: none; /* 对于IE */
}
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-calendar-picker-indicator {
display: none; /* 针对Chrome和Safari */
}
input:-webkit-autofill {
box-shadow: 0 0 0px 1000px $bg inset!important;
-webkit-text-fill-color: $cursor!important;
}
//
input:-webkit-autofill:focus {
box-shadow: 0 0 0px 1000px $bg inset!important;
-webkit-text-fill-color: $cursor!important;
border: 1px solid rgba(255, 255, 255, 0.1)!important;
}
/* reset element-ui css */
.login-container {
.el-input {