From 135fb6591be552babe37a5f6ecd850bed505587b Mon Sep 17 00:00:00 2001 From: liuye Date: Thu, 3 Mar 2022 09:43:29 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=B9=E6=AE=8A=E4=BA=BA=E7=BE=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/AppSpecialPeople/detail.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/AppSpecialPeople/detail.vue b/src/apps/AppSpecialPeople/detail.vue index 495a9919..3ae5d7d5 100644 --- a/src/apps/AppSpecialPeople/detail.vue +++ b/src/apps/AppSpecialPeople/detail.vue @@ -124,10 +124,10 @@ export default { this.$http.post(`/app/appapplicationinfo/specialStatistic?areaId=${this.areaId}&type=0&range=0`).then((res) => { console.log(res); if (res.code == 0) { - for (let i in res.data.map) { + for (let i in res.data) { var obj = { label: i, - value: res.data.map[i], + value: res.data[i], } this.statisticsList.push(obj) } @@ -139,10 +139,10 @@ export default { this.$http.post(`/app/appapplicationinfo/specialStatistic?areaId=${this.areaId}&type=0&range=1`).then((res) => { console.log(res); if (res.code == 0) { - for (let i in res.data.monthMap) { + for (let i in res.data) { var obj = { label: i, - value: res.data.monthMap[i], + value: res.data[i], } this.statisticsListMon.push(obj) }