评审室首页-评委会信息 增加报道信息

This commit is contained in:
zhangyx
2022-08-23 09:52:05 +08:00
parent 55dd3c87d8
commit 1b9b678447

View File

@ -147,13 +147,31 @@ const Index: React.FC<{}> = () => {
{
title: '评委会成员',
dataIndex: 'name',
width: '25%'
width: '10%'
},
{
title: '状态',
width: '25%',
title: '报道状态',
width: '10%',
dataIndex: 'name',
render: (value, record) => (record.reportStatus == 0 ? "未报道" : record.reportStatus == 1 ? "已报道" : "-"),
},
{
title: '报道时间',
width: '20%',
valueType: 'dateTime',
dataIndex: 'reportDate',
},
{
title: '签到状态',
width: '10%',
render: (value, record) => (record.status == 1 ? "未签到" : record.status == 2 ? "已签到" : "已申请回避"),
},
{
title: '签到时间',
width: '20%',
valueType: 'dateTime',
dataIndex: 'loginTime',
},
{
title: '身份',
width: '25%',