forked from Gitlink/forgeplus-react
专家库页面添加专家评估分数以及修缮其他小bug
This commit is contained in:
parent
009c511592
commit
250f06f061
|
|
@ -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: '工作单位',
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ function SelectExpert(props) {
|
|||
align: 'center',
|
||||
},
|
||||
{
|
||||
title: '专家评分',
|
||||
title: '专家评估',
|
||||
dataIndex: 'expertScore',
|
||||
align: 'center',
|
||||
render:(text,record)=>{
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@ export default Form.create()(({ form, showNotification, match, history, state })
|
|||
width: 260,
|
||||
},
|
||||
{
|
||||
title: '专家评分',
|
||||
title: '专家评估',
|
||||
dataIndex: 'expertScore',
|
||||
align: 'center',
|
||||
render:(text,record)=>{
|
||||
|
|
|
|||
Loading…
Reference in New Issue