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:
commit
5b8413ee6d
@ -45,7 +45,10 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-tooltip>
|
</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 style="position:relative">
|
||||||
<div class="tips">
|
<div class="tips">
|
||||||
@ -88,13 +91,16 @@ export default {
|
|||||||
callback()
|
callback()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 可以使用正则表达式来验证密码是否至少包含一个大写字母和一个小写字母
|
||||||
const validatePassword = (rule, value, callback) => {
|
const validatePassword = (rule, value, callback) => {
|
||||||
if (value.length < 6) {
|
if (value.length < 6) {
|
||||||
callback(new Error('The password can not be less than 6 digits'))
|
callback(new Error('The password can not be less than 6 digits'));
|
||||||
} else {
|
} else if (!/[a-z]/.test(value) ||!/[A-Z]/.test(value)) {
|
||||||
callback()
|
callback(new Error('The password should contain both uppercase and lowercase letters'));
|
||||||
}
|
} else {
|
||||||
|
callback();
|
||||||
}
|
}
|
||||||
|
};
|
||||||
return {
|
return {
|
||||||
loginForm: {
|
loginForm: {
|
||||||
username: 'admin',
|
username: 'admin',
|
||||||
@ -209,11 +215,30 @@ $light_gray:#fff;
|
|||||||
$cursor: #fff;
|
$cursor: #fff;
|
||||||
|
|
||||||
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
|
@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
|
||||||
.login-container .el-input input {
|
.login-container.el-input input {
|
||||||
color: $cursor;
|
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 */
|
/* reset element-ui css */
|
||||||
.login-container {
|
.login-container {
|
||||||
.el-input {
|
.el-input {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user