element-plus表格内使用telported为false的下拉框被隐藏的终极解决方案

134 阅读1分钟

复制下面的代码

.el-table {
  &:has(.el-popper:not([style*="display: none"])) {
    overflow: visible !important;
    .el-table__inner-wrapper {
      overflow: visible !important;
      .el-table__body-wrapper {
        overflow: visible !important;
        & > .el-scrollbar {
          overflow: visible !important;
          & > .el-scrollbar__wrap {
            overflow: visible !important;
          }
        }
      }
    }
  }
}
.el-table__cell {
  // 修复表格内的弹出内容被挡住问题
  &:has(.el-popper:not([style*="display: none"])) {
    overflow: visible !important;
    z-index: 99999;
    .cell {
      overflow: visible !important;
    }
  }
}