|
@@ -0,0 +1,134 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="statistics">
|
|
|
|
+ <div class="data_look">
|
|
|
|
+ <DateTitle title="数据概览" :one="true" @getChangeDate="dataChange"/>
|
|
|
|
+ <ul class="data_container">
|
|
|
|
+ <li v-for="item in dataContainer" :key="item.value">
|
|
|
|
+ <span>{{item.name}}</span>
|
|
|
|
+ <span class="container_number">{{item.value}}</span>
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="online_time">
|
|
|
|
+ <DateTitle title="用户单日平均在线时长" @getChangeDate="onlineChange"/>
|
|
|
|
+ <BrokenLine id="onlineChart" className="online_chart" width="100%" height="338px" :dataOption="onlineOption"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="hot_course">
|
|
|
|
+ <DateTitle title="热门课程排行" @getChangeDate="hotChange"/>
|
|
|
|
+ <BrokenLine id="courseChart" class="course_chart" width="100%" height="505px" :dataOption="hotOption"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="page_time">
|
|
|
|
+ <DateTitle title="主要功能模块访问数据" @getChangeDate="pageChange"/>
|
|
|
|
+ <BrokenLine id="pageChart" className="page_chart" width="100%" height="338px" :dataOption="pageOption"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+<script>
|
|
|
|
+import DateTitle from '../../../components/DateTitle.vue'
|
|
|
|
+import BrokenLine from '../../../components/BrokenLine.vue'
|
|
|
|
+export default {
|
|
|
|
+ name: 'Statistics',
|
|
|
|
+ components: {
|
|
|
|
+ DateTitle,
|
|
|
|
+ BrokenLine
|
|
|
|
+ },
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ dataContainer() {
|
|
|
|
+ return this.$store.states.baydataList
|
|
|
|
+ },
|
|
|
|
+ onlineOption() {
|
|
|
|
+ return this.$store.states.dataAnalysisList
|
|
|
|
+ },
|
|
|
|
+ hotOption() {
|
|
|
|
+ return this.$store.states.hotCourseList
|
|
|
|
+ },
|
|
|
|
+ pageOption() {
|
|
|
|
+ console.log(this.$store.states.pageOptionData)
|
|
|
|
+ return this.$store.states.pageOptionData
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // 获取数据概览数据
|
|
|
|
+ dataChange(satartTime) {
|
|
|
|
+ console.log(satartTime)
|
|
|
|
+ this.$store.dispatch('getBayDataList', {
|
|
|
|
+ day: satartTime
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 获取用户平均在线时长
|
|
|
|
+ onlineChange(startDay, endDay) {
|
|
|
|
+ console.log(startDay, endDay)
|
|
|
|
+ this.$store.dispatch('getDataAnalysisList', {
|
|
|
|
+ startDay,
|
|
|
|
+ endDay
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 获取热门课程排行
|
|
|
|
+ hotChange(startDay, endDay) {
|
|
|
|
+ console.log(startDay, endDay)
|
|
|
|
+ this.$store.dispatch('getHotCourseList', {
|
|
|
|
+ startDay,
|
|
|
|
+ endDay
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 获取主要功能访问数据
|
|
|
|
+ pageChange(startDay, endDay) {
|
|
|
|
+ console.log(startDay, endDay)
|
|
|
|
+ this.$store.dispatch('getPageOption', {
|
|
|
|
+ startDay,
|
|
|
|
+ endDay
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+<style scoped lang="scss">
|
|
|
|
+.statistics {
|
|
|
|
+ flex: 1;
|
|
|
|
+ overflow: scroll;
|
|
|
|
+ width: 100%;
|
|
|
|
+ padding: 40px 85px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ .data_look,
|
|
|
|
+ .online_time,
|
|
|
|
+ .hot_course,
|
|
|
|
+ .page_time {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: auto;
|
|
|
|
+ background: #fff;
|
|
|
|
+ }
|
|
|
|
+ .data_container {
|
|
|
|
+ display: flex;
|
|
|
|
+ padding: 62px 0;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ list-style:none;
|
|
|
|
+ li {
|
|
|
|
+ flex: 1;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ height: 90px;
|
|
|
|
+ border-right: 1px solid #ADADAD;
|
|
|
|
+ &:last-child {
|
|
|
|
+ border: 0px;
|
|
|
|
+ }
|
|
|
|
+ span {
|
|
|
|
+ font-size: 20px;
|
|
|
|
+ color: #252525;
|
|
|
|
+ }
|
|
|
|
+ .container_number {
|
|
|
|
+ color: #108EE9;
|
|
|
|
+ font-size: 40px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+</style>
|