Merge branch 'master-电子评标室-现场人员管理-zyx' into 'release_electronic_bid_evaluation_room'
8.26 评审室首页-评委会信息 增加报道信息 See merge request eshop/fe_service_ebtp_frontend!252
This commit is contained in:
@ -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%',
|
||||
|
Reference in New Issue
Block a user