表头样式:
<el-table :data="props.tableData" style="width: 100%" :header-cell-style="headerCellStyle" :cell-style="cellStyle">
</el-table>样式:
// 表头样式
const headerCellStyle = {background: '#062549',color: '#FFFFFF',borderBottom: 'none'
}
// 表格样式
function cellStyle({ rowIndex }) {if (rowIndex % 2 == 0) {return { background: '#061938', color: '#FFFFFF', borderBottom: 'none' }} else {return { background: '#062345', color: '#FFFFFF', borderBottom: 'none' }}
}
去掉底部白线:(不生效的话在el-table外边加个div)
<style scoped lang="scss">
// 去掉底部白线
:deep(.el-table) {--el-table-border-color: tarnsparent !important;background-color: #071b39 !important;
}
</style>