Compare commits

...

2 Commits

View File

@ -171,6 +171,7 @@ class SE061ShowPrint extends React.Component {
<td>身份证号</td>
<td>入职时间</td>
<td>部门</td>
<td>是否确认</td>
<td>岗位</td>
<td>分数</td>
<td>考核结果</td>
@ -181,10 +182,11 @@ class SE061ShowPrint extends React.Component {
if (item.IS_DELETED == null || item.IS_DELETED == false) {
return <tr>
<td>{item.CODE} </td>
<td>{item.Nav_User?.NAME} </td>
<td>{(item.ISSIGN != null && item.ISSIGN == true) ? <p> {item.Nav_User?.NAME}</p> : <p style={{ color: 'red' }} > {item.Nav_User?.NAME}</p>} </td>
<td>{item.ID_CARD_NUMBER} </td>
<td>{moment(item.IN_TIME).format('YYYY-MM-DD')} </td>
<td>{item.Nav_Department?.NAME} </td>
<td>{(item.ISSIGN != null && item.ISSIGN == true) ? "是" : "否"} </td>
<td>{item.Nav_Post?.NAME} </td>
<td>{item.SCORE} </td>
<td>{enums.SEExaminationResultsEnum.enums[item.EXAMINATION_RESULTS]} </td>