中建四(首页):记住密码处理

This commit is contained in:
骆乐 2022-09-14 09:57:06 +08:00
parent fef393758d
commit 25b2ca283b
2 changed files with 8 additions and 11 deletions

View File

@ -17,7 +17,7 @@ var PROJECT = {
} }
var PROJECT_TYPE = PROJECT.local_test var PROJECT_TYPE = PROJECT.online_zjsj
var headerShow = true; // 是否显示头部 var headerShow = true; // 是否显示头部
var tabsShow = true; // 是否显示tabs var tabsShow = true; // 是否显示tabs

View File

@ -36,7 +36,7 @@
<el-button class="loginBtn" @click="loginFn">登录</el-button> <el-button class="loginBtn" @click="loginFn">登录</el-button>
</div> </div>
<div class="about"> <div class="about">
<el-radio v-model="radio" label="1">记住登录密码</el-radio> <el-checkbox v-model="checked">记住登录密码</el-checkbox>
<span>忘记密码</span> <span>忘记密码</span>
</div> </div>
<div> <div>
@ -59,7 +59,7 @@ export default {
}, },
data() { data() {
return { return {
radio:'', checked: false,
}; };
}, },
methods: { methods: {
@ -88,18 +88,15 @@ export default {
color: #ffffff; color: #ffffff;
font-size: 14px; font-size: 14px;
} }
::v-deep .el-radio { ::v-deep .el-checkbox__inner {
color: #27e1f0;
}
::v-deep .el-radio__inner {
border-radius: 0%; border-radius: 0%;
background-color: rgba(2, 38, 64, 0); background-color: rgba(2, 38, 64, 0);
border-color: #27e1f0; border-color: #27e1f0;
} }
::v-deep .el-radio__label {
padding-left: 5px;
}
::v-deep .el-checkbox__label{
color: #27e1f0;
}
// 使 // 使
::v-deep input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill { ::v-deep input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
// //
@ -186,7 +183,7 @@ export default {
color: #27e1f0; color: #27e1f0;
font-size: 12px; font-size: 12px;
span { span {
margin-left: 21%; margin-left: 25%;
} }
} }
} }