From 1b9b678447cdb11145d216ef00412f2116c86bba Mon Sep 17 00:00:00 2001 From: zhangyx <1254353766@qq.com> Date: Tue, 23 Aug 2022 09:52:05 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=84=E5=AE=A1=E5=AE=A4=E9=A6=96=E9=A1=B5-?= =?UTF-8?q?=E8=AF=84=E5=A7=94=E4=BC=9A=E4=BF=A1=E6=81=AF=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E6=8A=A5=E9=81=93=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Evaluation/BaseInf/index.tsx | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) 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%',