当前位置:   article > 正文

element ui,table设置fixed表格错位,滚动条无法显示问题_element 动态显示列 fixed异常

element 动态显示列 fixed异常

fixed设置了left和right表格固定列错位,滚动条无法显示问题通过设置样式解决

1、固定列错行问题修改

 /deep/ .w-table__fixed-body-wrapper{

  top: 80px !important;

}

/deep/ .w-table__fixed{

       bottom: 12px !important;

       box-shadow:none;

  }

2、滚动条无法显示问题

/deep/ .w-table__fixed-right { // 右固定列

      bottom: 8px !important;

      right: 8px !important;

    }

/deep/ .w-table__body-wrapper{

   height: calc(100% - 80px);

   flex: 1;

   overflow: auto;

}

/deep/  .w-table__fixed,.w-table__fixed-right{

       height: auto !important;

  }

fixed设置了left和right表格固定列错位,滚动条无法显示问题如果项目里面运用的表格比较多

1、在APP文件下

<template>

  <div id="app" class="common-bg">

    <transition name="fade">

      <router-view ref="appView" />

    </transition>

    <div v-show="iframeDialog.visible" class="dialog-mask"></div>

  </div>

</template>

2、写统一函数去处理表格

 addMessageLister (event) {

        // 获取页面中已注册过ref的所有的子组件。

        let refList = this.$refs.appView.$refs

        if (refList) {

          for (let i of Object.keys(refList)) {

            // 根据doLayout方法判断子组件是不是el-table

            if (refList[i] && refList[i].doLayout) {

              // 执行doLayout方法

              refList[i].doLayout()

            }

          }

      }

    }

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读