parent
aae1da39d9
commit
70191087bf
24 changed files with 327 additions and 152 deletions
@ -0,0 +1,7 @@ |
||||
/deep/.el-table .warning-row { |
||||
background: rgb(253, 255, 255)!important; |
||||
} |
||||
|
||||
/deep/.el-table .success-row { |
||||
background: rgb(250, 251, 255)!important; |
||||
} |
@ -0,0 +1,25 @@ |
||||
const headerCellStyle = { |
||||
'background-color': 'rgb(235, 239, 255)', |
||||
'color': 'black', |
||||
'font-weight': '700' |
||||
} |
||||
|
||||
const tableRowClassName = function({row, rowIndex}) { |
||||
if (rowIndex % 2 === 1) { |
||||
return 'warning-row'; |
||||
} else if (rowIndex % 2 === 0) { |
||||
return 'success-row'; |
||||
} |
||||
return ''; |
||||
} |
||||
|
||||
const cellStyle = { |
||||
padding: 0 |
||||
} |
||||
|
||||
|
||||
export { |
||||
headerCellStyle, |
||||
tableRowClassName, |
||||
cellStyle |
||||
} |
@ -0,0 +1,14 @@ |
||||
const tableRowClassName = function({row, rowIndex}) { |
||||
if (rowIndex % 2 === 1) { |
||||
return 'warning-row'; |
||||
} else if (rowIndex % 2 === 0) { |
||||
return 'success-row'; |
||||
} |
||||
return ''; |
||||
} |
||||
|
||||
export { |
||||
tableRowClassName |
||||
} |
||||
|
||||
export default tableRowClassName |
Loading…
Reference in new issue