员工信息同步
parent
c7f24f47e4
commit
c51be84642
|
@ -62,7 +62,7 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th>民族</th>
|
<th>民族</th>
|
||||||
<td>{{ userDetailForm.NATIONALITY_NAME ? userDetailForm.NATIONALITY_NAME : '暂无信息' }}</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>
|
||||||
|
@ -109,6 +109,68 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>是否按期缴纳工伤保险</th>
|
||||||
|
<td :colspan="userDetailForm.IS_INJURIES_PAY === '1' ? '':5">{{ formatLabel(userDetailForm.IS_INJURIES_PAY) }}</td>
|
||||||
|
<th v-if="userDetailForm.IS_INJURIES_PAY === '1'">工伤保险有效期</th>
|
||||||
|
<td v-if="userDetailForm.IS_INJURIES_PAY === '1'">{{ userDetailForm.IS_INJURIES_PAY_TIME }}</td>
|
||||||
|
<th v-if="userDetailForm.IS_INJURIES_PAY === '1'">工伤保险凭证</th>
|
||||||
|
<td v-if="userDetailForm.IS_INJURIES_PAY === '1'">
|
||||||
|
<span>
|
||||||
|
<viewer>
|
||||||
|
<img
|
||||||
|
v-for="item in gongshangbaoxianFile"
|
||||||
|
:src="config.fileUrl + item.FILEPATH"
|
||||||
|
:key="item.IMGFILES_ID"
|
||||||
|
width="40"
|
||||||
|
height="40"
|
||||||
|
style="object-fit: cover;">
|
||||||
|
</viewer>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>是否缴纳商业保险</th>
|
||||||
|
<td :colspan="userDetailForm.ISPAY === '1' ? '' : 5">
|
||||||
|
{{ formatLabel(userDetailForm.ISPAY) }}
|
||||||
|
</td>
|
||||||
|
<th v-if="userDetailForm.ISPAY === '1'">商业保险附件</th>
|
||||||
|
<td v-if="userDetailForm.ISPAY === '1'">
|
||||||
|
<span>
|
||||||
|
<viewer>
|
||||||
|
<img
|
||||||
|
v-for="item in insuranceFileList"
|
||||||
|
:src="config.fileUrl + item.FILEPATH"
|
||||||
|
:key="item.IMGFILES_ID"
|
||||||
|
width="40"
|
||||||
|
height="40"
|
||||||
|
style="object-fit: cover;">
|
||||||
|
</viewer>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
<th v-if="userDetailForm.ISPAY === '1'">商业保险单号</th>
|
||||||
|
<td v-if="userDetailForm.ISPAY === '1'">{{ userDetailForm.ISPAY_NUMBER }}</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>{{ formatLabel(userDetailForm.IS_LEVEL_THREE) }}</td>
|
<td>{{ formatLabel(userDetailForm.IS_LEVEL_THREE) }}</td>
|
||||||
<th v-if="userDetailForm.IS_LEVEL_THREE == 1">三级安全培训照片</th>
|
<th v-if="userDetailForm.IS_LEVEL_THREE == 1">三级安全培训照片</th>
|
||||||
|
|
Loading…
Reference in New Issue