大数据应用开发——数据可视化

前言

大数据应用开发------实时数据采集

大数据应用开发------实时数据处理

Flink完成Kafka中的数据消费,将数据分发至Kafka的dwd层中

并在HBase中进行备份

目录

题目

创建Vue项目

引用echarts,并展示柱状图

展示折线图

展示饼图

展示玫瑰图


题目

按照任务书要求编写前端代码,调用后台数据接口,使用Vue.js、ECharts完成数据可视化

创建Vue项目
复制代码
# 以下是一个使用Vue.js 3.0和ECharts 5.1编写的简单示例。这个示例展示了如何在Vue组件中集成ECharts并绘制一个简单的折线图。
# 首先,确保你已经安装了Vue CLI和必要的依赖。你可以使用以下命令来创建一个新的Vue项目(如果还没有的话):
npm install -g @vue/cli  
vue create 项目名  (管理员运行)
cd 项目名
# 然后,安装ECharts:
npm install echarts --save
# 运行:
npm run serve

将模板的HelloWorld.vue删减

复制代码
<template>
</template>

<script>
export default {
  name: 'HelloWorld',
  data(){
    return{
      msg:HelloWorld
    }
  },
  mounted(){
  },
  methods:{
  }
}
</script>

<style scoped>
</style>

请求数据,并打印在控制台上

复制代码
<template>
</template>

<script>
export default {
  name: 'HelloWorld',
  data(){
    return{
    }
  },
  mounted(){
    this.fetchData();
  },
  methods:{
    fetchData(){
      return fetch('https://mock.mengxuegu.com/mock/63bbc9160743af0df9523683/GZOld720/DSY',{
        method: "POST",
        body:JSON.stringify({
          "startTime":"2021-01-01 00:00:00",
          "endTime":"2021-12-31 00:00:00"
        }),
        headers:{  //请求头信息
               'Content-Type':'application/json' 
        }
      })
        .then(response=>response.json())
        .then(data=>{
          const renData = data.list.data;
          console.log(renData);
        })
        .catch(err=>{
          console.log(err)
        })
    }
  }
}
</script>

<style scoped>
</style>
引用echarts,并展示柱状图
复制代码
<template>
  <div id="mychart" class="chart"></div>
</template>

<script>
import * as echart from 'echarts'
export default {
  name: 'HelloWorld',
  data(){
    return{
    }
  },
  mounted(){
    this.fetchData();
  },
  methods:{
    fetchData(){
      return fetch('https://mock.mengxuegu.com/mock/63bbc9160743af0df9523683/GZOld720/DSY',{
        method: "POST",
        body:JSON.stringify({
          "startTime":"2021-01-01 00:00:00",
          "endTime":"2021-12-31 00:00:00"
        }),
        headers:{  //请求头信息
               'Content-Type':'application/json' 
        }
      })
        .then(response=>response.json())
        .then(data=>{
          const renData = data.list.data;
          console.log(renData);

          renData.slice(0,5);

          const option = {
          title:{
            text:"标题"
          },
          xAxis:{
            data:renData.map(i=>i.nationName)
          },
          legend:{
          },
          yAxis:{},
          series:[
            {
              type:"bar",
              data:renData.map(i=>i.totalConsumption),
              name:"消费额"
            }
          ]
        };
        const mychart = echart.init(document.getElementById("mychart"));
        mychart.setOption(option);
        })
        .catch(err=>{
          console.log(err)
        })
    }
  }
}
</script>

<style scoped>
.chart{
  float: left;
  width: 1000px;
  height: 400px;
}
</style>
展示折线图
复制代码
<template>
  <div id="mychart" class="chart"></div>
</template>

<script>
import * as echart from 'echarts'
export default {
  name: 'HelloWorld',
  data(){
    return{
    }
  },
  mounted(){
    this.fetchData();
  },
  methods:{
    fetchData(){
      return fetch('https://mock.mengxuegu.com/mock/63bbc9160743af0df9523683/GZOld720/DSY',{
        method: "POST",
        body:JSON.stringify({
          "startTime":"2021-01-01 00:00:00",
          "endTime":"2021-12-31 00:00:00"
        }),
        headers:{  //请求头信息
               'Content-Type':'application/json' 
        }
      })
        .then(response=>response.json())
        .then(data=>{
          const renData = data.list.data;
          console.log(renData);

          renData.slice(0,5);

          const option = {
          title:{
            text:"标题"
          },
          xAxis:{
            data:renData.map(i=>i.nationName)
          },
          legend:{
          },
          yAxis:{},
          series:[
            {
              type:"line",
              data:renData.map(i=>i.totalConsumption),
              name:"消费额"
            }
          ]
        };
        const mychart = echart.init(document.getElementById("mychart"));
        mychart.setOption(option);
        })
        .catch(err=>{
          console.log(err)
        })
    }
  }
}
</script>

<style scoped>
.chart{
  float: left;
  width: 1000px;
  height: 400px;
}
</style>
展示饼图
复制代码
<template>
  <div id="mychart" class="chart"></div>
</template>

<script>
import * as echart from 'echarts'
export default {
  name: 'HelloWorld',
  data(){
    return{
    }
  },
  mounted(){
    this.fetchData();
  },
  methods:{
    fetchData(){
      return fetch('https://mock.mengxuegu.com/mock/63bbc9160743af0df9523683/GZOld720/DSY',{
        method: "POST",
        body:JSON.stringify({
          "startTime":"2021-01-01 00:00:00",
          "endTime":"2021-12-31 00:00:00"
        }),
        headers:{  //请求头信息
               'Content-Type':'application/json' 
        }
      })
        .then(response=>response.json())
        .then(data=>{
          const renData = data.list.data;
          console.log(renData);

          renData.slice(0,5);

          const option = {
          title:{
            text:"标题"
          },
          legend:{},
          series:[
            {
              type:"pie",
              data:renData.map(i=>({
                name: i.nationName,
                value: i.totalConsumption
              }))
            }
          ]
        };
        const mychart = echart.init(document.getElementById("mychart"));
        mychart.setOption(option);
        })
        .catch(err=>{
          console.log(err)
        })
    }
  }
}
</script>

<style scoped>
.chart{
  float: left;
  width: 1000px;
  height: 400px;
}
</style>
展示玫瑰图
复制代码
<template>
  <div id="mychart" class="chart"></div>
</template>

<script>
import * as echart from 'echarts'
export default {
  name: 'HelloWorld',
  data(){
    return{
    }
  },
  mounted(){
    this.fetchData();
  },
  methods:{
    fetchData(){
      return fetch('https://mock.mengxuegu.com/mock/63bbc9160743af0df9523683/GZOld720/DSY',{
        method: "POST",
        body:JSON.stringify({
          "startTime":"2021-01-01 00:00:00",
          "endTime":"2021-12-31 00:00:00"
        }),
        headers:{  //请求头信息
               'Content-Type':'application/json' 
        }
      })
        .then(response=>response.json())
        .then(data=>{
          const renData = data.list.data;
          console.log(renData);

          renData.slice(0,5);

          const option = {
          title:{
            text:"标题"
          },
          legend:{},
          series:[
            {
              type:"pie",
              radius: [60, 110],
              center: ["40%", 200],
              roseType: "radius",
              data:renData.map(i=>({
                name: i.nationName,
                value: i.totalConsumption
              }))
            }
          ]
        };
        const mychart = echart.init(document.getElementById("mychart"));
        mychart.setOption(option);
        })
        .catch(err=>{
          console.log(err)
        })
    }
  }
}
</script>

<style scoped>
.chart{
  float: left;
  width: 1000px;
  height: 400px;
}
</style>
相关推荐
用户28003832908404 分钟前
升级Vue3.4+版本,ant-design-vue 3.x 版本的Modal函数方式无法关闭问题
vue.js
小菜全21 分钟前
uniapp新增页面及跳转配置方法
开发语言·前端·javascript·vue.js·前端框架
白水清风32 分钟前
关于Js和Ts中类(class)的知识
前端·javascript·面试
前端Hardy34 分钟前
只用2行CSS实现响应式布局,比媒体查询更优雅的布局方案
javascript·css·html
小菜全42 分钟前
uniapp基础组件概述
前端·css·vue.js·elementui·css3
车口1 小时前
滚动加载更多内容的通用解决方案
javascript
艾小码1 小时前
手把手教你实现一个EventEmitter,彻底告别复杂事件管理!
前端·javascript·node.js
因吹斯汀2 小时前
一饭封神:当AI厨神遇上你的冰箱,八大菜系大师在线battle!
前端·vue.js·ai编程
崔璨3 小时前
详解Vue3的响应式系统
前端·vue.js
摸鱼的鱼lv3 小时前
🔥 Vue.js组件通信全攻略:从父子传值到全局状态管理,一篇搞定所有场景!🚀
前端·vue.js