当前位置: 代码迷 >> 综合 >> Ant 数据表格字段自定义样式及点击事件
  详细解决方案

Ant 数据表格字段自定义样式及点击事件

热度:77   发布时间:2024-03-07 02:41:55.0
{title: '周计划',dataIndex: 'weekPlanNum',width: 150,customRender: _this.lookWeek
}, lookWeek(text: any) {const textInfo: string = text === '0' ? '年' : text === '1' ? '月' : text === '2' ? '周' : text === '3' ? '日': ''const color: string = text === '0' ? 'orange' : text === '1' ? '#1890ff' : text === '2' ? '#52c41a' : text === '3' ? '#f33333' : ''return <a-tag color={color}>{textInfo}计划</a-tag>
}

 

  相关解决方案