diff --git a/src/apps/AppMonitoringObject/AppMonitoringObject.vue b/src/apps/AppMonitoringObject/AppMonitoringObject.vue index c19cc5cf..c4be3dec 100644 --- a/src/apps/AppMonitoringObject/AppMonitoringObject.vue +++ b/src/apps/AppMonitoringObject/AppMonitoringObject.vue @@ -60,7 +60,7 @@ export default { keyword: '', list: [], current: 1, - size: 10, + total: 0, tabList: [ { name: '已登记监测对象', @@ -111,24 +111,22 @@ export default { }, getList() { + if (this.list.length >= this.total && this.total > 0) return this.$http.post('/app/appgirdmemberpoverty/listByGirdMember', null, { params: { current: this.current, - size: 15, status: this.currentTabs, - // addressAreaId: this.areaId, - name: this.keyword + name: this.keyword, }, - }) - .then((res) => { - if (res.code == 0) { + }).then((res) => { + if (res?.data) { res.data.records.map((item) => { if (item.idNumber) { item.idNumber = item.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1********$2') } }) this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records - this.pages = res.data.pages + this.total = res.data.total } }) },