|
@ -302,6 +302,7 @@ export default { |
|
|
let constForm = { |
|
|
let constForm = { |
|
|
...form, |
|
|
...form, |
|
|
GRID_ID: '', |
|
|
GRID_ID: '', |
|
|
|
|
|
GRID_IDS: '', |
|
|
VILLAGE_ID: '', |
|
|
VILLAGE_ID: '', |
|
|
BUILD_ID: '', |
|
|
BUILD_ID: '', |
|
|
UNIT_ID: '', |
|
|
UNIT_ID: '', |
|
@ -341,7 +342,9 @@ export default { |
|
|
form: { |
|
|
form: { |
|
|
...form, |
|
|
...form, |
|
|
AGENCY_ID: '', |
|
|
AGENCY_ID: '', |
|
|
|
|
|
AGENCY_IDS: '', |
|
|
GRID_ID: '', |
|
|
GRID_ID: '', |
|
|
|
|
|
GRID_IDS:'', |
|
|
VILLAGE_ID: '', |
|
|
VILLAGE_ID: '', |
|
|
BUILD_ID: '', |
|
|
BUILD_ID: '', |
|
|
UNIT_ID: '', |
|
|
UNIT_ID: '', |
|
@ -381,7 +384,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
queryType:{ |
|
|
queryType:{ |
|
|
'AGENCY_ID':'like' |
|
|
'AGENCY_ID':'list_equal' |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
@ -518,17 +521,22 @@ export default { |
|
|
handleChangeAgency(val) { |
|
|
handleChangeAgency(val) { |
|
|
let obj = this.$refs["myCascader"].getCheckedNodes()[0].data |
|
|
let obj = this.$refs["myCascader"].getCheckedNodes()[0].data |
|
|
if (obj) { |
|
|
if (obj) { |
|
|
|
|
|
//市北定制化需求,组织与网格多选 |
|
|
if(obj.level === 'grid'){ |
|
|
if(obj.level === 'grid'){ |
|
|
this.form.GRID_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; |
|
|
// this.form.GRID_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; |
|
|
|
|
|
this.form.GRID_IDS = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; |
|
|
this.form.AGENCY_ID='' |
|
|
this.form.AGENCY_ID='' |
|
|
}else{ |
|
|
}else{ |
|
|
this.form.AGENCY_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; |
|
|
this.form.AGENCY_IDS = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; |
|
|
|
|
|
// this.form.AGENCY_ID = this.agencyIdArray.length > 0 ? this.agencyIdArray[this.agencyIdArray.length - 1] : ''; |
|
|
this.form.GRID_ID = '' |
|
|
this.form.GRID_ID = '' |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
}else{ |
|
|
}else{ |
|
|
this.form.AGENCY_ID='' |
|
|
// this.form.AGENCY_ID='' |
|
|
this.form.GRID_ID = '' |
|
|
// this.form.GRID_ID = '' |
|
|
|
|
|
this.form.AGENCY_IDS='' |
|
|
|
|
|
this.form.GRID_IDS = '' |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
this.form.VILLAGE_ID = '' |
|
|
this.form.VILLAGE_ID = '' |
|
@ -641,8 +649,8 @@ export default { |
|
|
const { user } = this.$store.state |
|
|
const { user } = this.$store.state |
|
|
this.$http |
|
|
this.$http |
|
|
.post('/gov/org/icneighborhood/neighborhoodoption', { |
|
|
.post('/gov/org/icneighborhood/neighborhoodoption', { |
|
|
gridId: this.form.GRID_ID, |
|
|
gridIds: this.form.GRID_IDS, |
|
|
agencyId: this.form.AGENCY_ID, |
|
|
agencyIds: this.form.AGENCY_IDS, |
|
|
// agencyId: user.agencyId |
|
|
// agencyId: user.agencyId |
|
|
}) |
|
|
}) |
|
|
.then(({ data: res }) => { |
|
|
.then(({ data: res }) => { |
|
|