专家库页面添加专家评估分数以及修缮其他小bug

This commit is contained in:
unknown 2022-01-20 15:22:23 +08:00
parent 009c511592
commit 250f06f061
4 changed files with 16 additions and 10 deletions

View File

@ -38,12 +38,14 @@ function RegisterList({ showNotification }) {
return [{
title: '姓名',
dataIndex: 'expertName',
width: 75,
width: 85,
key: 'expertName',
fixed: 'left',
// render: (text, record) => {
// return record.user ? record.user.nickname || record.user.login : ''
// }
},
{
title: '手机号码',
dataIndex: 'phone',
key: 'phone',
},
{
title: '最高学历',
@ -52,9 +54,13 @@ function RegisterList({ showNotification }) {
width: 80,
},
{
title: '手机号码',
dataIndex: 'phone',
key: 'phone',
title: '专家评估',
dataIndex: 'expertScore',
key: 'expertScore',
width: 80,
render: (text, record) => {
return text || '--'
}
},
{
title: '工作单位',

View File

@ -382,7 +382,7 @@ function ReviewTasks({ showNotification, match, history, current_user }) {
<button className="back-button but41_border" onClick={() => { history.goBack() }}>返回上一页</button>
</p>
<Tabs defaultActiveKey="1" animated={false}>
<Tabs defaultActiveKey="0" animated={false}>
<TabPane tab="评审信息" key="0">
<div className="task-rules">

View File

@ -85,7 +85,7 @@ function SelectExpert(props) {
align: 'center',
},
{
title: '专家评',
title: '专家评',
dataIndex: 'expertScore',
align: 'center',
render:(text,record)=>{

View File

@ -324,7 +324,7 @@ export default Form.create()(({ form, showNotification, match, history, state })
width: 260,
},
{
title: '专家评',
title: '专家评',
dataIndex: 'expertScore',
align: 'center',
render:(text,record)=>{