From 9cc446d1aec02e1e4255278b418f90bb3574fd76 Mon Sep 17 00:00:00 2001 From: liujun Date: Thu, 14 Dec 2023 15:23:44 +0800 Subject: [PATCH] =?UTF-8?q?12618=20=E7=BC=96=E8=BE=91=E9=A1=B5=E9=9D=A2=20?= =?UTF-8?q?=E5=88=A4=E7=A9=BA=E6=8F=90=E7=A4=BA=E8=AF=AD=E4=B8=8D=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PersonManager/user/components/edit.vue | 27 ------------------- src/views/train/apply/components/list.vue | 10 +++---- 2 files changed, 5 insertions(+), 32 deletions(-) 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) }} - 三级安全培训照片 - + 三级安全培训照片 +