Browse Source

修复名单错误

feature
wxz 2 years ago
parent
commit
9b3041d772
  1. 1
      src/views/modules/communityService/policy/personList.vue
  2. 3
      src/views/modules/communityService/policy/policyList.vue

1
src/views/modules/communityService/policy/personList.vue

@ -265,6 +265,7 @@ export default {
let url = "/actual/base/residentBaseInfo/policyFindPersonList/list"; let url = "/actual/base/residentBaseInfo/policyFindPersonList/list";
this.searchFormData.tagId = this.tagId; this.searchFormData.tagId = this.tagId;
this.searchFormData.serviceId = this.serviceId; this.searchFormData.serviceId = this.serviceId;
this.searchFormData.policyId = this.policyId;
const { data, code, msg } = await requestPost(url, this.searchFormData); const { data, code, msg } = await requestPost(url, this.searchFormData);
if (code === 0) { if (code === 0) {
this.personList = data.list; this.personList = data.list;

3
src/views/modules/communityService/policy/policyList.vue

@ -717,7 +717,7 @@ export default {
}; };
this.pageNo = 1; this.pageNo = 1;
this.getTableData(); this.getTableData();s
}, },
// //
@ -725,6 +725,7 @@ export default {
this.showPersonList = true; this.showPersonList = true;
this.serviceId = row.serviceId; this.serviceId = row.serviceId;
this.tagId = row.resiSearchTagId; this.tagId = row.resiSearchTagId;
this.policyId = row.id;
}, },
}, },
}; };

Loading…
Cancel
Save