Commit 73dd71ca by li_hongchao

发查询条件弹窗页面,当内容高级配置项过 多且展开的情况下,会导致标题栏消失的情况, 且高度太高;建议固定标题栏和按钮,内容滚动 显示;

parent 9606a8b4
......@@ -9,6 +9,7 @@
:close-on-click-modal='false'
:modal='false'
>
<div class="fix-height">
<div class="top">
<div class="left">
<img
......@@ -496,7 +497,7 @@
</el-collapse-item>
</el-collapse>
</div>
</div>
<el-divider/>
<span
......@@ -1187,6 +1188,13 @@ export default {
</script>
<style lang="scss" scoped>
.fix-height {
/*min-height: 430px;*/
max-height: 690px;
overflow: scroll;
}
.tip {
margin-left: 24px;
color: #f8980a;
......@@ -1656,4 +1664,19 @@ export default {
background-color: #fff;
color: #333333;
}
// 滚动条的宽度
/deep/ .fix-height::-webkit-scrollbar {
width: 6px; // 横向滚动条
height: 6px; // 纵向滚动条 必写
display:none;
}
// 滚动条的滑块
/deep/ .fix-height::-webkit-scrollbar-thumb {
background-color: #dadde0;
border-radius: 3px;
}
</style>
......@@ -646,6 +646,7 @@
/deep/ .fix-height::-webkit-scrollbar {
width: 6px; // 横向滚动条
height: 6px; // 纵向滚动条 必写
display:none;
}
// 滚动条的滑块
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment