element table 使用了表格固定height高度和表格属性fixed属性出现了高度错乱bug
// template
<el-table ref="test" ></el-table>
//js
// 查询数据
getList(obj={}) {
getAreaList({xxx}).then(res => {
if (res.code == 200) {
this.$nextTick(() => {
this.$refs.test.doLayout()
})
}
})
},