项目介绍 vue2+elementUI+less

主要原因是因为固定的列是fixed定位,不会因为滚动条的原因挤压表格整体高度,但是不固定的列出现滚动条后就会被滚动条的高度撑起来,因此不固定的部分就错位了,解决办法如下:

在此之前改变过滚动条的样式,最好高度一致,兼容webkit内核的浏览器

// An highlighted block
/deep/.el-table{
	/deep/.el-table__body-wrapper::-webkit-scrollbar{
		width:12px;
		height:12px;
	}
	/deep/.el-table__body-wrapper::-webkit-scrollbar-thnmb{
		background-color:#ccc !important;
		border-radius:5px;
	}
	// 此段可写可不写 用处:可使固定列的高度不盖住滚动条
	// /deep/.el-table__fiexd,
	// .el-table__fixed-right{
	//  height:calc(100% - 12px)!important; 
	//}
	// 关键代码,解决错位问题 思路就是表格固定列显示滚动条后把表格顶上来
	/deep/.el-table-fixed .el-table__body{
		padding-bottom:12px;
	}
}
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45 7 个月前
a07f3a59 * Update transition.md * Update table.md * Update transition.md * Update table.md * Update transition.md * Update table.md * Update table.md * Update transition.md * Update popover.md 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐