From 3a029203baef9da81d42eec3492b33d1c9c84141 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 21 Jun 2023 13:38:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pidu/AppDataStatistics/components/sensitive.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/project/pidu/AppDataStatistics/components/sensitive.vue b/src/project/pidu/AppDataStatistics/components/sensitive.vue index a6eccfb7..aad70d82 100644 --- a/src/project/pidu/AppDataStatistics/components/sensitive.vue +++ b/src/project/pidu/AppDataStatistics/components/sensitive.vue @@ -59,12 +59,12 @@ export default { this.$http.post(`/app/appsessionarchivekeywordrecord/getKeywordRecordStatistic?departmentId=${this.departmentId}`).then(res=> { if(res?.data) { this.info = {...res.data} - var groupMonth = res.data.personRecordListMap.map(e=> e.dateDay) - this.groupData = res.data.personRecordListMap.map(e=> e.cnt) + var groupMonth = res.data.groupRecordListMap.map(e=> e.dateDay) + this.groupData = res.data.groupRecordListMap.map(e=> e.cnt) + + var userMonth = res.data.personRecordListMap.map(e=> e.dateDay) + this.userData = res.data.personRecordListMap.map(e=> e.cnt) - var userMonth = res.data.groupRecordListMap.map(e=> e.dateDay) - this.userData = res.data.groupRecordListMap.map(e=> e.cnt) - console.log(groupMonth, this.groupData) this.$nextTick(()=> { this.getGroupEcharts(groupMonth, this.groupData) this.getUserEcharts(userMonth, this.userData)