Compare commits

..

No commits in common. "0713a7b8a265945cab17b0e3d9f502b63b1e4640" and "ce46a137592d0b3ebfa4326daf4f37b1a4204aee" have entirely different histories.

View File

@ -171,7 +171,6 @@ class SE061ShowPrint extends React.Component {
<td>身份证号</td>
<td>入职时间</td>
<td>部门</td>
<td>是否确认</td>
<td>岗位</td>
<td>分数</td>
<td>考核结果</td>
@ -182,11 +181,10 @@ class SE061ShowPrint extends React.Component {
if (item.IS_DELETED == null || item.IS_DELETED == false) {
return <tr>
<td>{item.CODE} </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.Nav_User?.NAME} </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>