BUG 30880

This commit is contained in:
aixianling
2022-08-17 14:59:23 +08:00
parent 1620b916ea
commit d8045aa8f8

View File

@@ -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)