useTableStyle.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. import type { tableColumnInGroup } from '../components/ColumnSet/index.vue'
  2. import type { CSSProperties } from 'vue'
  3. type RowClassGetter = (param: {
  4. columns: tableColumnInGroup[]
  5. rowData: any
  6. rowIndex: number
  7. }) => string
  8. export type CellSlotProps = {
  9. column: tableColumnInGroup
  10. columns: tableColumnInGroup[]
  11. columnIndex: number
  12. depth: number
  13. style: CSSProperties
  14. rowData: any
  15. rowIndex: number
  16. isScrolling: boolean
  17. expandIconProps?:
  18. | {
  19. rowData: any
  20. rowIndex: number
  21. onExpand: (expand: boolean) => void
  22. }
  23. | undefined
  24. }
  25. type CellClassGetter = (param: CellSlotProps) => string
  26. const defaultCellClass = 'el-table-v2__cell-text'
  27. export default function useTableStyle() {
  28. const rowClass: RowClassGetter = ({ columns, rowData, rowIndex }) => {
  29. const classes: string[] = []
  30. if (rowIndex <= 2) {
  31. classes.push('bg-gray')
  32. }
  33. if (rowIndex === 2) {
  34. classes.push('underline-red')
  35. }
  36. return classes.join(' ')
  37. }
  38. const cellClass: CellClassGetter = ({
  39. column,
  40. columns,
  41. columnIndex,
  42. rowData,
  43. rowIndex,
  44. }) => {
  45. const classes: string[] = [defaultCellClass]
  46. if (rowData[column.dataKey] === '4行-2组-6列') {
  47. classes.push('cell-warning')
  48. }
  49. if (rowData[column.dataKey] === '5行-3组-3列') {
  50. classes.push('cell-error')
  51. }
  52. return classes.join(' ')
  53. }
  54. return {
  55. rowClass,
  56. cellClass,
  57. }
  58. }