之前我的项目里有用到elementUI的弹窗的,总是主动超出暗藏而后滚动条,刚开始不晓得怎么解决,都是本人新写一个弹窗应用,其实是有解决办法的,只是过后没找到:
给dialog增加了calss之后在css中增加以下代码就能实现高度超出了:

.recordTable{        .el-table__body tr.current-row > td {            background-color: #e6f9f0!important;        }         //高度不受限        .el-dialog__body {            max-height: none!important;        }    }