diff --git a/src/military/expert/expertList/index.jsx b/src/military/expert/expertList/index.jsx index 604afd3a3..21666b5f3 100644 --- a/src/military/expert/expertList/index.jsx +++ b/src/military/expert/expertList/index.jsx @@ -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: '工作单位', diff --git a/src/military/expert/expertUser/taskDetail/index.jsx b/src/military/expert/expertUser/taskDetail/index.jsx index 994aa5d9e..cbfe59bb5 100644 --- a/src/military/expert/expertUser/taskDetail/index.jsx +++ b/src/military/expert/expertUser/taskDetail/index.jsx @@ -382,7 +382,7 @@ function ReviewTasks({ showNotification, match, history, current_user }) {
-