- 问题描述:因为使用了表格固定height高度所以 使用表格属性fixed属性出现了高度错乱bug
- 知识点:使用element table 里提供的
doLayout
方法
- 代码
// template
<el-table ref="test" ></el-table>
//js
// 查询数据
getList(obj={}) {
getAreaList({xxx}).then(res => {
if (res.code == 200) {
this.$nextTick(() => {
this.$refs.test.doLayout()
})
}
})
},