中建四局(登录页):输入框样式冲突解决

This commit is contained in:
骆乐 2022-09-13 16:36:54 +08:00
parent 3991d90667
commit fef393758d
2 changed files with 28 additions and 27 deletions

View File

@ -64,7 +64,7 @@ export default {
}, },
methods: { methods: {
goBackBtn() { goBackBtn() {
this.$emit('goBackBtn'); this.$router.push({ path: "/" });
}, },
loginFn(){ loginFn(){
this.$emit('loginFn'); this.$emit('loginFn');
@ -74,6 +74,32 @@ export default {
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
::v-deep ::-webkit-input-placeholder {
color: #eeeeee;
-webkit-text-fill-color: #eeeeee;
}
::v-deep .el-input__inner {
border-top-width: 0px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 1px;
border-radius: 0%;
background-color: rgba(2, 38, 64, 0.1);
color: #ffffff;
font-size: 14px;
}
::v-deep .el-radio {
color: #27e1f0;
}
::v-deep .el-radio__inner {
border-radius: 0%;
background-color: rgba(2, 38, 64, 0);
border-color: #27e1f0;
}
::v-deep .el-radio__label {
padding-left: 5px;
}
// 使 // 使
::v-deep input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill { ::v-deep input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
// //
@ -85,7 +111,7 @@ export default {
} }
.leftContent { .leftContent {
position: absolute; position: absolute;
top: 20%; top: 15%;
right: 9%; right: 9%;
width: 32%; width: 32%;
.backBtn { .backBtn {

View File

@ -559,32 +559,7 @@ export default {
}; };
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
::v-deep .el-input__inner {
border-top-width: 0px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 1px;
border-radius: 0%;
background-color: rgba(2, 38, 64, 0.1);
color: #ffffff;
font-size: 14px;
}
::v-deep ::-webkit-input-placeholder {
color: #eeeeee;
-webkit-text-fill-color: #eeeeee;
}
::v-deep .el-radio {
color: #27e1f0;
}
::v-deep .el-radio__inner {
border-radius: 0%;
background-color: rgba(2, 38, 64, 0);
border-color: #27e1f0;
}
::v-deep .el-radio__label {
padding-left: 5px;
}
.zjsjLogin { .zjsjLogin {
width: 100%; width: 100%;
height: 100%; height: 100%;