0


element ui,table设置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>
<transition name="fade">

  <router-view ref="appView" />

</transition>

<div v-show="iframeDialog.visible" class="dialog-mask"></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()

        }

      }

  }

}

本文转载自: https://blog.csdn.net/u010939484/article/details/136476387
版权归原作者 u010939484 所有, 如有侵权,请联系我们删除。

“element ui,table设置fixed表格错位,滚动条无法显示问题”的评论:

还没有评论