element-ui表格无法横向拖动问题

是不是用到了fixed在这里插入图片描述

// 因为我只有在小屏显示不下的时候才会出现这个问题所以我在这里做了适配(建议把样式放在全局)
@media screen and (max-width: 1800px) {
	 // 由于使用了fixed导致横向条无法拖动出现bug
	 .Table-page .el-table__fixed {
	    height: auto !important;
	    bottom: 2px !important;
	  }
    .Table-page .el-table__fixed-body-wrapper {
	    max-height: calc(100% - 6px) !important;
	    bottom: 0 !important;
	  }
	.Table-page .el-table__fixed-right-patch {
    	width: 0 !important;
  	}
  }
<!-- 表格 -->
<div class="Table-page" ref="table">
	<el-table ref="Table" v-loading="tableLoding" border stripe :data="tableData" :max-height='699'>
	 	<el-table-column type="index" label="	序号" align="center" width="50" fixed></el-table-column>
	</el-table>
</div>

你可能感兴趣的:(elementui)