You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.6 KiB
72 lines
1.6 KiB
5 years ago
|
<template>
|
||
|
<div class="dashboard-container">
|
||
|
<div class="dashboard-editor-container">
|
||
|
<panel-group/>
|
||
|
|
||
|
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
|
||
|
<line-chart/>
|
||
|
</el-row>
|
||
|
|
||
|
<el-row :gutter="32">
|
||
|
<el-col :xs="24" :sm="24" :lg="8">
|
||
|
<div class="chart-wrapper">
|
||
|
<raddar-chart/>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :xs="24" :sm="24" :lg="8">
|
||
|
<div class="chart-wrapper">
|
||
|
<pie-chart/>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :xs="24" :sm="24" :lg="8">
|
||
|
<div class="chart-wrapper">
|
||
|
<bar-chart/>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { mapGetters } from 'vuex'
|
||
|
import PanelGroup from './dashboard/PanelGroup'
|
||
|
import LineChart from './dashboard/LineChart'
|
||
|
import RaddarChart from './dashboard/RaddarChart'
|
||
|
import PieChart from './dashboard/PieChart'
|
||
|
import BarChart from './dashboard/BarChart'
|
||
|
import { count } from '@/api/visits'
|
||
|
|
||
|
/**
|
||
|
* 记录访问,只有页面刷新或者第一次加载才会记录
|
||
|
*/
|
||
|
count().then(res => {})
|
||
|
|
||
|
export default {
|
||
|
name: 'Dashboard',
|
||
|
components: {
|
||
|
PanelGroup,
|
||
|
LineChart,
|
||
|
RaddarChart,
|
||
|
PieChart,
|
||
|
BarChart },
|
||
|
computed: {
|
||
|
...mapGetters([
|
||
|
'roles'
|
||
|
])
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||
|
.dashboard-editor-container {
|
||
|
padding: 18px 22px 22px 22px;
|
||
|
background-color: rgb(240, 242, 245);
|
||
|
.chart-wrapper {
|
||
|
background: #fff;
|
||
|
padding: 16px 16px 0;
|
||
|
margin-bottom: 32px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|