|
@ -224,7 +224,7 @@ export default { |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
}, |
|
|
mounted() { |
|
|
created() { |
|
|
this.getFormInfo(); |
|
|
this.getFormInfo(); |
|
|
}, |
|
|
}, |
|
|
props: { |
|
|
props: { |
|
@ -371,7 +371,7 @@ export default { |
|
|
this.$http |
|
|
this.$http |
|
|
.post(`/gov/org/agency/communityListByCustomerId`) |
|
|
.post(`/gov/org/agency/communityListByCustomerId`) |
|
|
.then(({ data: res }) => { |
|
|
.then(({ data: res }) => { |
|
|
if (tMapres.code !== 0) { |
|
|
if (res.code !== 0) { |
|
|
return this.$message.error(res.msg); |
|
|
return this.$message.error(res.msg); |
|
|
} |
|
|
} |
|
|
this.organizationList = res.data; |
|
|
this.organizationList = res.data; |
|
@ -384,7 +384,7 @@ export default { |
|
|
if (this.dataForm.id) { |
|
|
if (this.dataForm.id) { |
|
|
this.getInfo(); |
|
|
this.getInfo(); |
|
|
} else { |
|
|
} else { |
|
|
|
|
|
|
|
|
this.initMap(); |
|
|
this.initMap(); |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|