diff --git a/src/views/PersonManager/user/components/edit.vue b/src/views/PersonManager/user/components/edit.vue index bb941d6..b8636a8 100644 --- a/src/views/PersonManager/user/components/edit.vue +++ b/src/views/PersonManager/user/components/edit.vue @@ -1030,33 +1030,6 @@ export default { } } } - // if (this.form.IS_INJURIES_PAY === '1') { - // if (this.$refs['gongshangFileList'].uploadFiles.length > 0) { - // for (let i = 0; i < this.$refs['gongshangFileList'].uploadFiles.length; i++) { - // if (this.$refs['gongshangFileList'].uploadFiles[i]) { - // formData.append('WORK_INSURANCE_LIST', this.$refs['gongshangFileList'].uploadFiles[i].raw) - // } - // } - // } - // } - // if (this.form.ISPAY === '1') { - // if (this.form.insuranceFileList.length > 0) { - // for (let i = 0; i < this.form.insuranceFileList.length; i++) { - // if (this.form.insuranceFileList[i]) { - // formData.append('insuranceFile', this.form.insuranceFileList[i].raw) - // } - // } - // } - // } - // if (this.form.IS_SIGN_LABOR === '1') { - // if (this.form.contractFileList.length > 0) { - // for (let i = 0; i < this.form.contractFileList.length; i++) { - // if (this.form.contractFileList[i]) { - // formData.append('contractFile', this.form.contractFileList[i].raw) - // } - // } - // } - // } formData.append('CORPINFO_ID', JSON.parse(sessionStorage.getItem('user')).CORPINFO_ID) formData.append('EMPLOYMENT_APPLY_MANAGEMENT_ID', this.EMPLOYMENT_APPLY_MANAGEMENT_ID) upload( diff --git a/src/views/train/apply/components/list.vue b/src/views/train/apply/components/list.vue index df80853..0919bda 100644 --- a/src/views/train/apply/components/list.vue +++ b/src/views/train/apply/components/list.vue @@ -136,7 +136,7 @@ 民族 - {{ userDetailForm.minzuName }} + {{ userDetailForm.minzuName ? userDetailForm.minzuName : '暂无信息' }} 婚姻状况 {{ userDetailForm.MARITALSTATUS === '0' ? '未婚' : '已婚' }} 政治面貌 @@ -148,9 +148,9 @@ 户口所在地 - {{ userDetailForm.HKLOCAL }} + {{ userDetailForm.HKLOCAL ? userDetailForm.HKLOCAL : '暂无信息' }} 现住址 - {{ userDetailForm.ADDRESS }} + {{ userDetailForm.ADDRESS ? userDetailForm.ADDRESS : '暂无信息' }} 联系电话 {{ userDetailForm.PHONE }} @@ -185,8 +185,8 @@ 是否参加三级安全培训 {{ formatLabel(userDetailForm.IS_LEVEL_THREE) }} - 三级安全培训照片 - + 三级安全培训照片 +