<el-table>中添加
:row-style="{height:'40px'}"
:cell-style="{padding:'0px'}"
:header-cell-style="{background:'#EEEEEE',color:'#4d4d4d'}"
<el-table-column>中添加
show-overflow-tooltip
确定最大外层,固定高度
.group_details .el-table__header tr,
.el-table__header th {
padding: 0;
height: 40px;
}
.group_details .el-table__body tr, .el-table__body td {
padding: 0;
height: 40px;
}
.hotel_name_title {
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
position: relative;
}