diff --git a/src/pages/Evaluation/BaseInf/index.tsx b/src/pages/Evaluation/BaseInf/index.tsx index 0b48d42..c381d1b 100644 --- a/src/pages/Evaluation/BaseInf/index.tsx +++ b/src/pages/Evaluation/BaseInf/index.tsx @@ -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%',