13132 人员详情页面 修改 参考其他页面
parent
16636dbae4
commit
356eab0ded
|
@ -144,7 +144,7 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>民族</th>
|
<th>民族</th>
|
||||||
<td>{{ userDetailForm.minzuName }}</td>
|
<td>{{ userDetailForm.minzuName ? userDetailForm.minzuName : '暂无信息' }}</td>
|
||||||
<th>婚姻状况</th>
|
<th>婚姻状况</th>
|
||||||
<td>{{ userDetailForm.MARITALSTATUS === '0' ? '未婚' : '已婚' }}</td>
|
<td>{{ userDetailForm.MARITALSTATUS === '0' ? '未婚' : '已婚' }}</td>
|
||||||
<th>政治面貌</th>
|
<th>政治面貌</th>
|
||||||
|
@ -156,48 +156,18 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>户口所在地</th>
|
<th>户口所在地</th>
|
||||||
<td>{{ userDetailForm.HKLOCAL }}</td>
|
<td>{{ userDetailForm.HKLOCAL ? userDetailForm.HKLOCAL : '暂无信息' }}</td>
|
||||||
<th>现住址</th>
|
<th>现住址</th>
|
||||||
<td>{{ userDetailForm.ADDRESS }}</td>
|
<td>{{ userDetailForm.ADDRESS ? userDetailForm.ADDRESS : '暂无信息' }}</td>
|
||||||
<th>联系电话</th>
|
<th>联系电话</th>
|
||||||
<td>{{ userDetailForm.PHONE }}</td>
|
<td>{{ userDetailForm.PHONE }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>文化程度</th>
|
<th>文化程度</th>
|
||||||
<td>{{ userDetailForm.DEGREE_OF_EDUCATION_NAME }}</td>
|
<td>{{ userDetailForm.DEGREE_OF_EDUCATION_NAME }}</td>
|
||||||
<!-- <th>本企业从业开始日期</th>-->
|
|
||||||
<!-- <td>{{ userDetailForm.CORP_START_DATE }}</td>-->
|
|
||||||
<th>岗位名称(工种)</th>
|
<th>岗位名称(工种)</th>
|
||||||
<td colspan="3">{{ userDetailForm.POST_ID }}</td>
|
<td colspan="3">{{ userDetailForm.POST_ID }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- <tr>-->
|
|
||||||
<!-- <th>本岗位从业开始日期</th>-->
|
|
||||||
<!-- <td colspan="5">{{ userDetailForm.ENTRY_DATE }}</td>-->
|
|
||||||
<!-- <!– <th>是否按期缴纳工伤保险</th>–>-->
|
|
||||||
<!-- <!– <td>{{ formatLabel(userDetailForm.IS_INJURIES_PAY) }}</td>–>-->
|
|
||||||
<!-- <!– <th>工种</th>–>-->
|
|
||||||
<!-- <!– <td>{{ userDetailForm.PERSON_WORK_TYPE }}</td>–>-->
|
|
||||||
<!-- </tr>-->
|
|
||||||
<!-- <tr>-->
|
|
||||||
<!-- <th>是否签订劳动合同</th>-->
|
|
||||||
<!-- <td :colspan="userDetailForm.IS_SIGN_LABOR === '1' ? '' : 5">-->
|
|
||||||
<!-- {{ formatLabel(userDetailForm.IS_SIGN_LABOR) }}-->
|
|
||||||
<!-- </td>-->
|
|
||||||
<!-- <th v-if="userDetailForm.IS_SIGN_LABOR === '1'">劳动合同附件</th>-->
|
|
||||||
<!-- <td v-if="userDetailForm.IS_SIGN_LABOR === '1'" colspan="3">-->
|
|
||||||
<!-- <span>-->
|
|
||||||
<!-- <viewer>-->
|
|
||||||
<!-- <img-->
|
|
||||||
<!-- v-for="item in contractFileList"-->
|
|
||||||
<!-- :src="config.fileUrl + item.FILEPATH"-->
|
|
||||||
<!-- :key="item.IMGFILES_ID"-->
|
|
||||||
<!-- width="40"-->
|
|
||||||
<!-- height="40"-->
|
|
||||||
<!-- style="object-fit: cover;">-->
|
|
||||||
<!-- </viewer>-->
|
|
||||||
<!-- </span>-->
|
|
||||||
<!-- </td>-->
|
|
||||||
<!-- </tr>-->
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>是否缴纳社保</th>
|
<th>是否缴纳社保</th>
|
||||||
<td :colspan="userDetailForm.IS_SOCIAL === '1' ? '':5">{{ formatLabel(userDetailForm.IS_SOCIAL) }}</td>
|
<td :colspan="userDetailForm.IS_SOCIAL === '1' ? '':5">{{ formatLabel(userDetailForm.IS_SOCIAL) }}</td>
|
||||||
|
@ -223,8 +193,8 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>是否参加三级安全培训</th>
|
<th>是否参加三级安全培训</th>
|
||||||
<td >{{ formatLabel(userDetailForm.IS_LEVEL_THREE) }}</td>
|
<td >{{ formatLabel(userDetailForm.IS_LEVEL_THREE) }}</td>
|
||||||
<th>三级安全培训照片</th>
|
<th v-if="userDetailForm.IS_LEVEL_THREE == 1">三级安全培训照片</th>
|
||||||
<td v-if="photosOfLevel.length>0" colspan="3">
|
<td v-if="userDetailForm.IS_LEVEL_THREE == 1 && photosOfLevel.length>0" colspan="3">
|
||||||
<span>
|
<span>
|
||||||
<div class="img-flex">
|
<div class="img-flex">
|
||||||
<viewer>
|
<viewer>
|
||||||
|
|
Loading…
Reference in New Issue