From b93adfc4fe952ea2324b3fffeaa77d966b6c6880 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Tue, 28 Apr 2026 16:44:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../orgInfo/components/OrgApplyInfoForm.vue | 63 ++++++++++++------- .../orgInfo/components/OrgApplyInfoModal.vue | 2 +- 2 files changed, 43 insertions(+), 22 deletions(-) diff --git a/src/views/admin/orgInfo/components/OrgApplyInfoForm.vue b/src/views/admin/orgInfo/components/OrgApplyInfoForm.vue index 4afe55b..f56c822 100644 --- a/src/views/admin/orgInfo/components/OrgApplyInfoForm.vue +++ b/src/views/admin/orgInfo/components/OrgApplyInfoForm.vue @@ -57,27 +57,38 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + >({ auditBy: '', auditTime: '', departName: '', + headPath: '', }); const tempNullVal = ref(''); @@ -297,6 +309,8 @@ const sfsh = ref('0'); const { createMessage } = useMessage(); const labelCol = ref({ xs: { span: 24 }, sm: { span: 8 } }); const wrapperCol = ref({ xs: { span: 24 }, sm: { span: 16 } }); +const labelCol4 = ref({ xs: { span: 24 }, sm: { span: 12 } }); +const wrapperCol4 = ref({ xs: { span: 24 }, sm: { span: 12 } }); const confirmLoading = ref(false); //表单验证 const validatorRules = reactive({ @@ -366,6 +380,13 @@ function edit(record) { cityViewValue.value = record.orgProvince_dictText + (!!record.orgCity_dictText ? record.orgCity_dictText : '') + (!!record.orgDistrict_dictText ? record.orgDistrict_dictText : '') + if(!tmpData.headPath){ + if(tmpData.sex == '女'){ + tmpData.headPath = 'https://www.focusnu.com/media/directive/index/nv.png'; + }else{ + tmpData.headPath = 'https://www.focusnu.com/media/directive/index/nan.png'; + } + } //赋值 Object.assign(formData, tmpData); if (lsbl == '1') { diff --git a/src/views/admin/orgInfo/components/OrgApplyInfoModal.vue b/src/views/admin/orgInfo/components/OrgApplyInfoModal.vue index 2f62b01..498ec91 100644 --- a/src/views/admin/orgInfo/components/OrgApplyInfoModal.vue +++ b/src/views/admin/orgInfo/components/OrgApplyInfoModal.vue @@ -43,7 +43,7 @@ function add() { * @param record */ function edit(record) { - title.value = disableSubmit.value ? '详情' : '机构加盟申请审核'; + title.value = disableSubmit.value ? '机构详情' : '机构加盟申请审核'; visible.value = true; nextTick(() => { registerForm.value.edit(record);