Vue电商项目—数据统计—数据报表模块-11

Vue电商项目—数据统计—数据报表模块-11

1.1 数据统计概述

数据统计模块主要用于统计电商平台运营过程的中的各种统计数据,
并通过直观的可视化方式展示出来,
方便相关运营和管理人员查看。

在这里插入图片描述

1.2 用户来源数据统计报表

1. Echarts 第三方可视化库的基本使用

在这里插入图片描述
在这里插入图片描述

   // 1、导入 Echarts
import echarts from 'echarts'
// 导入lodash 用来合并数据
import _ from 'lodash'

export default {
    data() {
        return {
            // 需要合并的数据
            options: {
                        title: {
                        text: '用户来源'
                        },
                        tooltip: {
                        trigger: 'axis',
                        axisPointer: {
                            type: 'cross',
                            label: {
                            backgroundColor: '#E9EEF3'
                            }
                        }
                        },
                        grid: {
                        left: '3%',
                        right: '4%',
                        bottom: '3%',
                        containLabel: true
                        },
                        xAxis: [
                        {
                            boundaryGap: false
                        }
                        ],
                        yAxis: [
                        {
                            type: 'value'
                        }
                                ]
                }
            }
    },
    created() {},
    // 此时,页面上的元素,已经被渲染完毕了
    async mounted() {

        // 3、基于准备好的dom,初始化echarts实例
         var myChart = echarts.init(document.getElementById('main'));


        // 发送请求
        const {data: res} = await this.$http.get('reports/type/1');

        if(res.meta.status !== 200) return this.$message.error('获取折线图数据失败!');

        // 4、准备数据和配置项
        // 使用lodash的 merge方法,将 返回的数据 与 this.options合并
        const result = _.merge(res.data, this.options);

        // 5、使用刚指定的配置项和数据显示图表。
        // 直接将获取的数据,进行展示,会缺少 鼠标跟随的效果
        myChart.setOption(result);

    }

该模块完整代码

<template>
    <div>
         <!-- 面包屑导航区域 -->
        <el-breadcrumb separator-class="el-icon-arrow-right">
            <el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-item>
            <el-breadcrumb-item>数据统计</el-breadcrumb-item>
            <el-breadcrumb-item>数据报表</el-breadcrumb-item>
        </el-breadcrumb>

        <!-- 卡片视图区域 -->
        <el-card>
            <!-- 2、为ECharts准备一个具备大小(宽高)的Dom -->
            <div id="main" style="width: 750px;height:400px;"></div>
        </el-card>
    </div>
</template>

<script>
// 1、导入 Echarts
import echarts from 'echarts'
// 导入lodash 用来合并数据
import _ from 'lodash'

export default {
    data() {
        return {
            // 需要合并的数据
            options: {
                        title: {
                        text: '用户来源'
                        },
                        tooltip: {
                        trigger: 'axis',
                        axisPointer: {
                            type: 'cross',
                            label: {
                            backgroundColor: '#E9EEF3'
                            }
                        }
                        },
                        grid: {
                        left: '3%',
                        right: '4%',
                        bottom: '3%',
                        containLabel: true
                        },
                        xAxis: [
                        {
                            boundaryGap: false
                        }
                        ],
                        yAxis: [
                        {
                            type: 'value'
                        }
                                ]
                }
            }
    },
    created() {},
    // 此时,页面上的元素,已经被渲染完毕了
    async mounted() {

        // 3、基于准备好的dom,初始化echarts实例
         var myChart = echarts.init(document.getElementById('main'));


        // 发送请求
        const {data: res} = await this.$http.get('reports/type/1');

        if(res.meta.status !== 200) return this.$message.error('获取折线图数据失败!');

        // 4、准备数据和配置项
        // 使用lodash的 merge方法,将 返回的数据 与 this.options合并
        const result = _.merge(res.data, this.options);

        // 5、使用刚指定的配置项和数据显示图表。
        // 直接将获取的数据,进行展示,会缺少 鼠标跟随的效果
        myChart.setOption(result);

    }
}
</script>


<style lang="less" scoped>
</style>
  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值