From 7c47b51399a3e8e858eabfd5d9213e8633764197 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 4 Mar 2022 11:43:25 +0800 Subject: [PATCH] 28040 --- src/apps/AppIntegralAudit/AppIntegralAudit.vue | 2 +- src/apps/AppVillagersCircle/commentList.vue | 2 +- src/apps/AppVillagersCircle/infoList.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/AppIntegralAudit/AppIntegralAudit.vue b/src/apps/AppIntegralAudit/AppIntegralAudit.vue index f8a32b6e..388afa6c 100644 --- a/src/apps/AppIntegralAudit/AppIntegralAudit.vue +++ b/src/apps/AppIntegralAudit/AppIntegralAudit.vue @@ -82,7 +82,7 @@ export default { } }).then(res => { if(res?.data){ - this.integralList = this.current > 1 ? [...this.integralList, ...res.data.records] : res.data.records + this.integralList = this.current > 1 ? res.data.records:[...this.integralList, ...res.data.records] this.$forceUpdate() this.flag = true } diff --git a/src/apps/AppVillagersCircle/commentList.vue b/src/apps/AppVillagersCircle/commentList.vue index 238feb23..b7147a90 100644 --- a/src/apps/AppVillagersCircle/commentList.vue +++ b/src/apps/AppVillagersCircle/commentList.vue @@ -92,7 +92,7 @@ export default { } }).then(res=>{ if(res?.data) { - this.data = this.current >1 ? [...this.data, ...this.res.data.records] : res.data.records + this.data = this.current >1 ? res.data.records:[...this.data, ...res.data.records] } }) }, diff --git a/src/apps/AppVillagersCircle/infoList.vue b/src/apps/AppVillagersCircle/infoList.vue index cbfdcd81..1c9f0182 100644 --- a/src/apps/AppVillagersCircle/infoList.vue +++ b/src/apps/AppVillagersCircle/infoList.vue @@ -80,7 +80,7 @@ export default { } }).then(res=>{ if(res?.data) { - this.villagerList = this.current >1 ? [...this.villagerList,...res.data.records] : res.data.records + this.villagerList = this.current >1 ? res.data.records:[...this.villagerList,...res.data.records] } }) },