This commit is contained in:
liuye
2022-04-21 10:05:23 +08:00
parent 6648726837
commit 5a6684b39d
2 changed files with 15 additions and 6 deletions

View File

@@ -57,7 +57,8 @@ export default {
},
methods: {
getList() {
this.$http.post(`/app/appparty/list`, null, {
var url = this.$route.query.isFourParty ? 'app/appparty/listByFourParty?size=999' : '/app/appparty/list'
this.$http.post(url, null, {
params: {
current: this.current,
size: 20,
@@ -66,13 +67,21 @@ export default {
}
}).then(res => {
if (res?.data) {
res.data.records.forEach(e => {
e.isCheck = this.selected.includes(e.idNumber)
})
if (this.current > 1 && this.current > res.data.pages) {
return
}
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
if(this.$route.query.isFourParty) {
res.data.forEach(e => {
e.isCheck = this.selected.includes(e.idNumber)
})
this.list = res.data
}else {
res.data.records.forEach(e => {
e.isCheck = this.selected.includes(e.idNumber)
})
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
}
}
})
},