From 95f304e9ce97360b97d98380ce11646e3bbba436 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E6=9C=89=E6=B8=85=E9=A6=99=E6=9C=88=E6=9C=89?= =?UTF-8?q?=E9=98=B4?= <185154740@qq.com> Date: Tue, 4 Jan 2022 17:56:04 +0800 Subject: [PATCH] 26329 --- .../AppResidentActivitie/AppResidentActivities.vue | 3 ++- src/apps/AppUniMsg/AppUniMsg.vue | 11 +---------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/src/apps/AppResidentActivitie/AppResidentActivities.vue b/src/apps/AppResidentActivitie/AppResidentActivities.vue index e1a1505c..33b31b68 100644 --- a/src/apps/AppResidentActivitie/AppResidentActivities.vue +++ b/src/apps/AppResidentActivitie/AppResidentActivities.vue @@ -32,7 +32,7 @@
{{ item.areaName }}{{ item.address }}
- +
{{ $dict.getLabel('villageActivityStatus', item.status) }}
@@ -103,6 +103,7 @@ export default { .then((res) => { if (res.code == 0) { this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records + this.total = res.data.total this.pages = res.data.pages } diff --git a/src/apps/AppUniMsg/AppUniMsg.vue b/src/apps/AppUniMsg/AppUniMsg.vue index 7c81d6e7..b78ec839 100644 --- a/src/apps/AppUniMsg/AppUniMsg.vue +++ b/src/apps/AppUniMsg/AppUniMsg.vue @@ -20,7 +20,7 @@
- +
@@ -100,15 +100,6 @@ export default { .then((res) => { if (res.code == 0) { this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records - if (this.datas) { - this.datas.map((item) => { - if (item.images) { - item.images = JSON.parse(item.images || '[]') - } - return item - }) - } - this.pages = res.data.pages } })