diff --git a/src/views/admin/orgapplyinfo/OrgModifyInfo.data.ts b/src/views/admin/orgapplyinfo/OrgModifyInfo.data.ts
index 48c971c..abcb610 100644
--- a/src/views/admin/orgapplyinfo/OrgModifyInfo.data.ts
+++ b/src/views/admin/orgapplyinfo/OrgModifyInfo.data.ts
@@ -94,4 +94,5 @@ export const applyObj = {
orgProvince: '机构省份',
orgCity: '机构城市',
orgDistrict: '机构区域',
+ headPath: '头像',
};
diff --git a/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue b/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue
index 0cac270..7f27e73 100644
--- a/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue
+++ b/src/views/admin/orgapplyinfo/components/OrgApplyInfoForm.vue
@@ -200,6 +200,12 @@
+
+
+
+
+
@@ -429,6 +435,7 @@ const formData = reactive>({
netUrl: '',
accountNo: '',
passwordText: '',
+ headPath: '',
});
const tempNullVal = ref('');
const sfsh = ref('0');
@@ -519,6 +526,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/orgapplyinfo/components/OrgHistoryForm.vue b/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue
index 668bb9d..61f0f6b 100644
--- a/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue
+++ b/src/views/admin/orgapplyinfo/components/OrgHistoryForm.vue
@@ -9,10 +9,10 @@
{{ applyObj[record.d1] }}
-
+
-
+
@@ -83,7 +83,7 @@ const { createMessage } = useMessage();
const labelCol = { span: 4 }; // 标签宽度
const wrapperCol = { span: 18 }; // 控件宽度
const isImg = (v_) => {
- return v_ == 'cardZmPath' || v_ == 'cardFmPath' || v_ == 'comBusinessLicense'
+ return v_ == 'cardZmPath' || v_ == 'cardFmPath' || v_ == 'comBusinessLicense'|| v_ == 'headPath'
}
const provinceOptions = ref({})
const formData = reactive>({