2026/5/18 12:40:20
网站建设
项目流程
卡盟网站建设,wordpress mp4,网站开发比较厉害,西安网站推广排名最近在做统计的需求#xff0c;一个台账有多个模块的数据#xff0c;表头需要根据颜色区分
效果上代码表格添加 :header-cell-styleel-table :header-cell-styleheaderCellStyle编写实现 headerCellStyleconst DDEBF7 [这里是表头1 的属性#xff08;p…最近在做统计的需求一个台账有多个模块的数据表头需要根据颜色区分效果上代码表格添加 :header-cell-styleel-table:header-cell-styleheaderCellStyle编写实现 headerCellStyleconstDDEBF7[这里是表头1的属性prop对应字段 比如 userName];constBDD7EE[这里是表头2的属性prop对应字段 比如 userAge];....表头nconstheaderCellStyle({row,column,rowIndex,columnIndex}){// 根据属性设置不同颜色if(DDEBF7.includes(column.property)){return{background:#b8cce4 !important,color:000000};}elseif(BDD7EE.includes(column.property)){return{background:#dce6f1 !important,color:#000000};}};