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") + : "" + }}