From 9b3041d77208efa7ac57747a9bb0c56c3e2cdae7 Mon Sep 17 00:00:00 2001 From: wxz Date: Tue, 8 Aug 2023 10:18:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=90=8D=E5=8D=95=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/communityService/policy/personList.vue | 1 + src/views/modules/communityService/policy/policyList.vue | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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; }, }, };