|
@ -108,7 +108,7 @@ export default { |
|
|
methods: { |
|
|
methods: { |
|
|
// 获取乡镇下拉信息(传参:4代表查“街道”) |
|
|
// 获取乡镇下拉信息(传参:4代表查“街道”) |
|
|
getDailyTypeArrInfo () { |
|
|
getDailyTypeArrInfo () { |
|
|
this.$http.get(`sys/dept/deptInfo?tags=street_party`).then(({ data: res }) => { |
|
|
this.$http.get(`sys/sysdeptinfo/getDeptInfo?tags=street_party`).then(({ data: res }) => { |
|
|
this.streetArr = res.data |
|
|
this.streetArr = res.data |
|
|
}).catch(() => {}) |
|
|
}).catch(() => {}) |
|
|
}, |
|
|
}, |
|
@ -125,7 +125,7 @@ export default { |
|
|
this.streetArr.find((item) => { |
|
|
this.streetArr.find((item) => { |
|
|
if (item.deptId === event) { |
|
|
if (item.deptId === event) { |
|
|
this.dataForm.streetId = item.deptId |
|
|
this.dataForm.streetId = item.deptId |
|
|
this.$http.get(`sys/dept/deptInfo?deptPid=${event}`).then(({ data: res }) => { |
|
|
this.$http.get(`sys/sysdeptinfo/getDeptInfo?deptPid=${event}`).then(({ data: res }) => { |
|
|
this.communitys = res.data |
|
|
this.communitys = res.data |
|
|
}).catch(() => {}) |
|
|
}).catch(() => {}) |
|
|
} |
|
|
} |
|
@ -137,7 +137,7 @@ export default { |
|
|
this.communitys.find((item) => { |
|
|
this.communitys.find((item) => { |
|
|
if (item.deptId === event) { |
|
|
if (item.deptId === event) { |
|
|
this.dataForm.communityId = item.deptId |
|
|
this.dataForm.communityId = item.deptId |
|
|
this.$http.get(`sys/dept/deptInfo?deptPid=${event}`).then(({ data: res }) => { |
|
|
this.$http.get(`sys/sysdeptinfo/getDeptInfo?deptPid=${event}`).then(({ data: res }) => { |
|
|
this.grids = res.data |
|
|
this.grids = res.data |
|
|
}).catch(() => {}) |
|
|
}).catch(() => {}) |
|
|
} |
|
|
} |
|
|