当前位置:   article > 正文

【无标题】element plus table表格的样式_elementplus table样式

elementplus table样式

在这里插入图片描述

//设置表头
::v-deep .el-table th.is-leaf {
	// border: none;
	background: #12437d !important;
	height: 60px !important;
	font-size: 20px;
	font-weight: 400;
	color: aliceblue;
	border: none !important;
}

//设置表格内容区域背景色为透明色
:deep(.el-table,
	.el-table__expanded-cell) {
	background-color: transparent;
	color: aliceblue;
	font-size: large;
	font-weight: 400;
}```

//鼠标移动到每行透明色
::v-deep .el-table__row:hover>td {
	background-color: transparent !important;
}

//去除table item每行的线
:deep(.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf) {
		border-bottom: none !important;
	}

`//去除table最后一行的线
	:deep(.el-table__inner-wrapper::before) {
		background-color: transparent;
	}``

//给每行设置class类名
const tableRowClassName = ({ rowIndex }) => {
	if (rowIndex % 2 === 0) {
		return 'yellow'
	} else {
		return 'orange'
	}
}
const headerRowStyle = (args) => {
	return {
		height: '50px',
		backgroundColor: '#03102d'
	}
}
// 第二个弹框的table的每行颜色
:deep(.yellow) {
	background: transparent !important;
	height: 60px;
	// border-bottom: 1px solid transparent !important;
}

:deep(.orange) {
	height: 60px;
	background: #12437d !important;

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/113551
推荐阅读
相关标签
  

闽ICP备14008679号