|
|
@ -534,7 +534,7 @@ |
|
|
|
|
|
|
|
<!-- 组织区划 --> |
|
|
|
<el-form-item label="组织区划"> |
|
|
|
<el-select v-model="zonings.areaCode" placeholder="请选择组织区划" @change="handelZoing"> |
|
|
|
<el-select v-model="OrgDetailsForm.areaName" placeholder="请选择组织区划" @change="handelStreeOrCommunityZoing"> |
|
|
|
<el-option |
|
|
|
v-for="item in zonings" |
|
|
|
:key="item.areaCode" |
|
|
@ -802,7 +802,8 @@ export default { |
|
|
|
mobile:'', |
|
|
|
centerAddress:'', |
|
|
|
areaCode:'', |
|
|
|
agencyId:'' |
|
|
|
agencyId:'', |
|
|
|
areaName:'' |
|
|
|
}, |
|
|
|
// 下级机关单位 |
|
|
|
OrgUnitDetailsForm:{ |
|
|
@ -1846,6 +1847,13 @@ export default { |
|
|
|
this.agencyForm.level = val.level |
|
|
|
this.agencyForm.areaName = val.areaName |
|
|
|
this.agencyForm.areaCode = val.areaCode |
|
|
|
|
|
|
|
}, |
|
|
|
handelStreeOrCommunityZoing(val){ |
|
|
|
console.log(val) |
|
|
|
this.OrgDetailsForm.level = val.level |
|
|
|
this.OrgDetailsForm.areaName = val.areaName |
|
|
|
this.OrgDetailsForm.areaCode = val.areaCode |
|
|
|
}, |
|
|
|
|
|
|
|
addAgency(row){ |
|
|
|