diff --git a/src/views/modules/communityService/policy/personList.vue b/src/views/modules/communityService/policy/personList.vue index 2c9b07b67..f74c4dda2 100644 --- a/src/views/modules/communityService/policy/personList.vue +++ b/src/views/modules/communityService/policy/personList.vue @@ -265,6 +265,7 @@ export default { let url = "/actual/base/residentBaseInfo/policyFindPersonList/list"; this.searchFormData.tagId = this.tagId; this.searchFormData.serviceId = this.serviceId; + this.searchFormData.policyId = this.policyId; const { data, code, msg } = await requestPost(url, this.searchFormData); if (code === 0) { this.personList = data.list; diff --git a/src/views/modules/communityService/policy/policyList.vue b/src/views/modules/communityService/policy/policyList.vue index 0532a8b11..4f500f58d 100644 --- a/src/views/modules/communityService/policy/policyList.vue +++ b/src/views/modules/communityService/policy/policyList.vue @@ -717,7 +717,7 @@ export default { }; this.pageNo = 1; - this.getTableData(); + this.getTableData();s }, // 人员列表查看 @@ -725,6 +725,7 @@ export default { this.showPersonList = true; this.serviceId = row.serviceId; this.tagId = row.resiSearchTagId; + this.policyId = row.id; }, }, };