From 4fb5105b0363e529090c2eeab1f5c3dbedd0d882 Mon Sep 17 00:00:00 2001 From: "mx00085@163.com" Date: Thu, 30 Mar 2023 14:53:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=90=A5=E8=BF=90=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=81=94=E8=B0=83,=E9=83=A8=E5=88=86?= =?UTF-8?q?=E5=A4=AE=E8=A7=86=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/indexProject.js | 6 +- src/views/report/Article.vue | 30 +- src/views/report/Learningpathmap.vue | 32 +- src/views/report/Operational.vue | 590 +++++++++++++++++++++++---- 4 files changed, 575 insertions(+), 83 deletions(-) diff --git a/src/api/indexProject.js b/src/api/indexProject.js index b4fed495..e3aafe5f 100644 --- a/src/api/indexProject.js +++ b/src/api/indexProject.js @@ -15,4 +15,8 @@ export const boeuExamPageListV2 = (obj) => http.post('/boeu/exam/pageList/v2', o // 问答分页列表 export const boeuQuestionPageList= (obj) => http.post('/boeu/question/pageList', obj ) //柱状体左侧获取数据接口 -export const dataStatisticsSelectV1= (obj) => http.post('/data/statistics/select/v1', obj ) \ No newline at end of file +export const dataStatisticsSelectV1= (obj) => http.post('/data/statistics/select/v1', obj ) +//柱状体右侧获取数据接口 +export const dataStatisticsSelectV2= (obj) => http.post('/data/statistics/select/v2', obj ) +// 图表2 学习情况数据接口 +export const boeuStudyDataGetStudyStaisticsList= (obj) => http.post('/boeu/studyData/getStudyStatisticsList', obj ) \ No newline at end of file diff --git a/src/views/report/Article.vue b/src/views/report/Article.vue index a6e539d4..d20d7d85 100644 --- a/src/views/report/Article.vue +++ b/src/views/report/Article.vue @@ -37,7 +37,9 @@
-
+
+ +
导出
@@ -59,14 +61,20 @@ {{ - record.publishTime && - dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss") - }} + record.sysUpdateTime + ? dayjs(record.sysUpdateTime).format("YYYY-MM-DD HH:mm:ss") + : record.sysCreateTime + ? dayjs(record.sysCreateTime).format("YYYY-MM-DD HH:mm:ss") + : "" + }}