自学内容网 自学内容网

element table 使用了表格固定height高度和表格属性fixed属性出现了高度错乱bug

  • 问题描述:因为使用了表格固定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()
            })
           }
         })
      },


原文地址:https://blog.csdn.net/m0_45011929/article/details/137644082

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!