diff --git a/src/apps/AppHelpEffect/normalFarmerList.vue b/src/apps/AppHelpEffect/normalFarmerList.vue index 83e7d224..9cc1648f 100644 --- a/src/apps/AppHelpEffect/normalFarmerList.vue +++ b/src/apps/AppHelpEffect/normalFarmerList.vue @@ -47,9 +47,9 @@ export default { methods: { getList(must) { if (must || this.total == 0 || this.list.length < this.total) { - const {current, search} = this.$props + const {current, search: {con: name}, search} = this.$props this.$http.post('/app/apppreventionreturntopovertylog/list', null, { - params: {...search, current, type: 2}, + params: {...search, current, type: 2, name}, }).then((res) => { if (res?.data) { this.list = [current == 1 ? [] : this.list, res.data.records].flat().filter(Boolean)