|
|
@ -6,8 +6,8 @@ |
|
|
|
|
|
|
|
<img src="../../../../assets/img/shuju/title-tip.png" |
|
|
|
alt /> |
|
|
|
<div class="customer_select"> |
|
|
|
<!-- <span>{{neighborHoodName+'-'}}</span> --> |
|
|
|
|
|
|
|
<div class="second-select"> |
|
|
|
<el-select v-model="selBuildingId" |
|
|
|
:popper-append-to-body="false" |
|
|
|
placeholder="请选择"> |
|
|
@ -19,6 +19,7 @@ |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
<div class="div_room_bar"> |
|
|
|
<el-scrollbar style="height:100%"> |
|
|
@ -370,88 +371,88 @@ export default { |
|
|
|
.info_loading { |
|
|
|
margin-top: 50px; |
|
|
|
} |
|
|
|
.customer_select { |
|
|
|
/* 未选中任何选项的时候 placeholder的样式 需要先选中父元素 增加权重 */ |
|
|
|
/deep/ input::-webkit-input-placeholder { |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
/deep/ input::-moz-input-placeholder { |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
/deep/ input::-ms-input-placeholder { |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
|
|
|
|
/* 修改的是el-input的样式 */ |
|
|
|
/* 一种方法是设置最里层el-input__inner的背景色 外层的两级父元素设置为透明色 */ |
|
|
|
/* 另一种方法是从el-select到el-input__inenr的背景色都设置为需要的颜色 */ |
|
|
|
/deep/ .el-select, |
|
|
|
/deep/ .el-input, |
|
|
|
/deep/ .el-input__inner { |
|
|
|
background-color: #08164d00; |
|
|
|
.second-title { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
margin-top: 20px; |
|
|
|
.second-title-label { |
|
|
|
position: relative; |
|
|
|
padding-left: 40px; |
|
|
|
font-size: 16px; |
|
|
|
font-weight: 500; |
|
|
|
color: #fff; |
|
|
|
border: 0px; |
|
|
|
border-radius: 0px; |
|
|
|
text-align: left; |
|
|
|
font-size: 22px; |
|
|
|
font-family: PingFang SC; |
|
|
|
font-weight: 800; |
|
|
|
color: #ffffff; |
|
|
|
display: flex; |
|
|
|
} |
|
|
|
|
|
|
|
/* el-input聚焦的时候 外层的border会有一个样式 */ |
|
|
|
/deep/ .el-select .el-input.is-focus .el-input__inner { |
|
|
|
border: 0px; |
|
|
|
} |
|
|
|
|
|
|
|
/* 修改的是el-input上下的小图标的颜色 */ |
|
|
|
/deep/ .el-select .el-input .el-select__caret::before { |
|
|
|
color: #fff; |
|
|
|
.second-title-label::after { |
|
|
|
content: ""; |
|
|
|
background: url("../../../../assets/img/xiala.png") center center no-repeat; |
|
|
|
position: absolute; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
top: 50%; |
|
|
|
left: 50%; |
|
|
|
transform: translate(-50%, -50%); |
|
|
|
} |
|
|
|
|
|
|
|
/* 修改总体选项的样式 最外层 */ |
|
|
|
/deep/ .el-select-dropdown { |
|
|
|
background-color: #08164d; |
|
|
|
margin: 0px; |
|
|
|
border: 0px; |
|
|
|
border-radius: 0px; |
|
|
|
} |
|
|
|
|
|
|
|
/* 修改选项整体的样式 */ |
|
|
|
/deep/ .el-select-dropdown__list { |
|
|
|
padding: 6px 0 20px 0; |
|
|
|
} |
|
|
|
/* 修改单个的选项的样式 */ |
|
|
|
/deep/ .el-select-dropdown__item { |
|
|
|
background-color: transparent; |
|
|
|
color: #fff; |
|
|
|
left: 20px; |
|
|
|
width: 12px; |
|
|
|
height: 12px; |
|
|
|
box-sizing: border-box; |
|
|
|
margin-top: -6px; |
|
|
|
background: #2865fa; |
|
|
|
border-radius: 50%; |
|
|
|
} |
|
|
|
} |
|
|
|
.second-select { |
|
|
|
margin: 0 10px 10px; |
|
|
|
::v-deep .el-input { |
|
|
|
width: 180px; |
|
|
|
height: 36px; |
|
|
|
.el-input__inner { |
|
|
|
height: 100%; |
|
|
|
padding: 0 10px; |
|
|
|
color: #fff; |
|
|
|
line-height: 36px; |
|
|
|
background: #06186d; |
|
|
|
border: 1px solid #1a64cc; |
|
|
|
} |
|
|
|
|
|
|
|
/* item选项的hover样式 */ |
|
|
|
/deep/ .el-select-dropdown__item.hover, |
|
|
|
/deep/ .el-select-dropdown__item:hover { |
|
|
|
color: #409eff; |
|
|
|
.el-icon-arrow-up:before { |
|
|
|
content: "\e78f"; |
|
|
|
} |
|
|
|
// .el-select__caret:before { |
|
|
|
// content: '\E790' |
|
|
|
// } |
|
|
|
} |
|
|
|
|
|
|
|
/* 修改的是下拉框选项内容上方的尖角 */ |
|
|
|
/deep/ .el-popper .popper__arrow, |
|
|
|
.el-popper .popper__arrow::after { |
|
|
|
display: none; |
|
|
|
::v-deep .el-date-editor { |
|
|
|
width: 360px; |
|
|
|
position: relative; |
|
|
|
background: #06186d; |
|
|
|
border: 1px solid #1a64cc; |
|
|
|
.el-range-input { |
|
|
|
color: #fff; |
|
|
|
background: #06186d; |
|
|
|
} |
|
|
|
.el-range-separator { |
|
|
|
color: #fff; |
|
|
|
} |
|
|
|
.el-range__icon { |
|
|
|
position: absolute; |
|
|
|
right: 5px; |
|
|
|
// float: right; |
|
|
|
} |
|
|
|
.el-input__prefix { |
|
|
|
left: unset; |
|
|
|
right: 5px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.second-select:last-child { |
|
|
|
margin-left: 0; |
|
|
|
margin-bottom: 10px; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|
<style lang=scss > |
|
|
|
.el-scrollbar__wrap { |
|
|
|
overflow-x: hidden !important; |
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |
|
|
|
<style |
|
|
|
lang="scss" |
|
|
|
src="@/assets/scss/modules/visual/typeAnalyze.scss" |
|
|
|
scoped |
|
|
|
></style> |