|
@@ -1,12 +1,6 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="dashboard-container">
|
3
|
3
|
<div class="dashboard-text">欢迎使用{{ name }}</div>
|
4
|
|
- <el-row class="sec" type="flex" justify="space-between">
|
5
|
|
- <el-col :span="10">
|
6
|
|
- <statistic title="学员总数" :value="total.reg" />
|
7
|
|
- </el-col>
|
8
|
|
- </el-row>
|
9
|
|
-
|
10
|
4
|
<el-row class="sec" type="flex" justify="space-between" :gutter="20">
|
11
|
5
|
<el-col :span="12">
|
12
|
6
|
<el-card style="height:496px">
|
|
@@ -99,14 +93,12 @@ import { getStudentTermTotalList, getStudentclassTotalList, getStudentAgeTotalLi
|
99
|
93
|
export default {
|
100
|
94
|
name: 'Dashboard',
|
101
|
95
|
components: {
|
102
|
|
- Statistic: () => import('./components/Statistic.vue'),
|
103
|
96
|
pieChart: () => import('@/components/ECharts/Pie.vue'),
|
104
|
97
|
LineChart: () => import('@/components/ECharts/Line.vue'),
|
105
|
98
|
ApacheChart: () => import('@/components/ECharts/Apache.vue')
|
106
|
99
|
},
|
107
|
100
|
data() {
|
108
|
101
|
return {
|
109
|
|
- total: { reg: 972 },
|
110
|
102
|
radio: '每日',
|
111
|
103
|
options: [],
|
112
|
104
|
termId: undefined,
|