123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <template>
- <div>
- <panel-group />
- <el-row :gutter="20">
- <el-col :span="10">
- <div class="chart__wrap">
- <echart :options="pieEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- <el-col :span="14">
- <div class="chart__wrap">
- <echart :options="barEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- </el-row>
- <div class="chart__wrap">
- <echart :options="lineEchatOptions" :height="'300px'" />
- </div>
- <panel-group />
- <el-row :gutter="20">
- <el-col :span="10">
- <div class="chart__wrap">
- <echart :options="pieEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- <el-col :span="14">
- <div class="chart__wrap">
- <echart :options="barEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- </el-row>
- <div class="chart__wrap">
- <echart :options="lineEchatOptions" :height="'300px'" />
- </div>
- <panel-group />
- <el-row :gutter="20">
- <el-col :span="10">
- <div class="chart__wrap">
- <echart :options="pieEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- <el-col :span="14">
- <div class="chart__wrap">
- <echart :options="barEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- </el-row>
- <div class="chart__wrap">
- <echart :options="lineEchatOptions" :height="'300px'" />
- </div>
- <panel-group />
- <el-row :gutter="20">
- <el-col :span="10">
- <div class="chart__wrap">
- <echart :options="pieEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- <el-col :span="14">
- <div class="chart__wrap">
- <echart :options="barEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- </el-row>
- <div class="chart__wrap">
- <echart :options="lineEchatOptions" :height="'300px'" />
- </div>
- <panel-group />
- <el-row :gutter="20">
- <el-col :span="10">
- <div class="chart__wrap">
- <echart :options="pieEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- <el-col :span="14">
- <div class="chart__wrap">
- <echart :options="barEchatOptions" :height="'300px'" />
- </div>
- </el-col>
- </el-row>
- <div class="chart__wrap">
- <echart :options="lineEchatOptions" :height="'300px'" />
- </div>
- </div>
- </template>
- <script lang="ts">
- import { defineComponent, reactive } from 'vue'
- import Echart from '_c/Echart/index.vue'
- import PanelGroup from './components/PanelGroup.vue'
- import { lineOptions, pieOptions, barOptions } from './echart-data'
- import type { EChartOption } from 'echarts'
- export default defineComponent({
- name: 'Dashboard',
- components: {
- Echart,
- PanelGroup
- },
- setup() {
- const lineEchatOptions = reactive<EChartOption>(lineOptions)
- const pieEchatOptions = reactive<EChartOption>(pieOptions)
- const barEchatOptions = reactive<EChartOption>(barOptions)
- return {
- lineEchatOptions,
- pieEchatOptions,
- barEchatOptions
- }
- }
- })
- </script>
- <style lang="less" scoped>
- .chart__wrap {
- margin-bottom: 20px;
- border-radius: 5px;
- background-color: @contentBg;
- padding: 10px;
- }
- </style>
|