標題:電商後臺管理系統——資料統計

小丕發表於2020-10-09

標題:電商後臺管理系統——資料統計

C.匯入ECharts並使用
1. 匯入 echarts
2. 為ECharts準備一個具備大小(寬高)的Dom => div
3. 在掛載鉤子函式中基於準備好的dom,初始化echarts例項
4. 準備資料和配置項options(在data中設定)
5. 展示資料

<template>
    <div>
        <h3>資料包表</h3>
        <!-- 麵包屑導航 -->
        <el-breadcrumb separator="/">
            <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>
            <div id="main" style="width:750px;height:400px;"></div>
        </el-card>
    </div>
</template>
    
<script>
//匯入echarts
import echarts from 'echarts'
//匯入lodash
import _ from 'lodash'
export default {
  data() {
    return {
      //需要跟請求的折線圖資料合併的options
      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() {
    //在頁面dom元素載入完畢之後執行的鉤子函式mounted
    // 基於準備好的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('獲取折線圖資料失敗')
    }

    //合併res.data和this.options
    const result = _.merge(res.data,this.options)

    // 使用獲取的資料展示圖表
    myChart.setOption(result)
  },
  methods: {}
}
</script>

<style lang="less" scoped>
</style>

相關文章