赞
踩
.el-table td, .el-table th.is-leaf,.el-table--border, .el-table--group{
border-color: black;
}
.el-table--border::after, .el-table--group::after, .el-table::before{
background-color: black;
}
<el-table :cell-style="cellStyle" :header-cell-style="{ color: 'black', borderColor: 'black' }" height="200" :data="tableData" style="width: 100%" border >
<el-table-column prop="date" label="序号" width="180" align="center">
</el-table-column>
<el-table-column prop="name" label="参数名称" width="180" align="center">
</el-table-column>
</el-table>
methods: {
cellStyle({ row, column, rowIndex, columnIndex }) {
return "height:35px!important; border-color:black!important; color:#000000!important; padding:0px!important; height:40px!important";
},
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。