c1b532ad
梁保满
权限配置,路由基础设置
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
<template>
<el-row>
<el-col :span="24">
<line-echarts
id="lineEcharts"
height="300px"
ref="echarts"
></line-echarts>
</el-col>
</el-row>
</template>
<script>
import LineEcharts from "components/ECharts/lineEcharts";
export default {
name: "mainIndex",
components: { LineEcharts },
mounted() {
this.selfAdaption();
},
methods: {
// echart自适应
selfAdaption() {
let that = this;
setTimeout(() => {
window.onresize = function () {
if (that.$refs.echarts) {
that.$refs.echarts.chart.resize();
}
};
}, 10);
},
},
};
</script>
<style lang="scss">
$top: top;
$bottom: bottom;
$left: left;
$right: right;
$leftright: ($left, $right);
$pinkk: #eec2d3;
$bluee: #409eff;
$yelloww: #f4d884;
$grennn: #89dda0;
$purplee: #78a2ea;
$lightBluee: #b8d6ff;
$list: bluee pinkk yelloww grennn purplee lightBluee;
$list1: $bluee $pinkk $yelloww $grennn $purplee $lightBluee;
%shadow {
background: #fff;
-webkit-box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.2);
box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.2);
border-color: rgba(0, 0, 0, 0.2);
.title {
font-size: 14px;
padding: 10px;
i {
margin-#{$right}: 5px;
}
}
}
@mixin flex($direction: row, $content: space-between) {
display: flex;
flex-direction: $direction;
justify-content: $content;
}
.card {
color: #666;
@extend %shadow;
ul {
@include flex;
li {
flex: 1;
a {
color: #666666;
align-items: center;
padding-#{$top}: 20px;
padding-#{$bottom}: 20px;
@include flex(column);
span {
height: 44px;
}
.num {
line-height: 44px;
font-size: 42px;
color: $bluee;
margin: 0px;
}
}
.kjfs-bluee {
color: $bluee;
}
.kjfs-pinkk {
color: $pinkk;
}
.kjfs-yelloww {
color: $yelloww;
}
.kjfs-grennn {
color: $grennn;
}
.kjfs-purplee {
color: $purplee;
}
.kjfs-lightBluee {
color: $lightBluee;
}
&:hover {
.kjfs-bluee {
color: #ffffff;
background: $bluee;
}
.kjfs-pinkk {
color: #ffffff;
background: $pinkk;
}
.kjfs-yelloww {
color: #ffffff;
background: $yelloww;
}
.kjfs-grennn {
color: #ffffff;
background: $grennn;
}
.kjfs-purplee {
color: #ffffff;
background: $purplee;
}
.kjfs-lightBluee {
color: #ffffff;
background: $lightBluee;
}
}
}
}
}
#lineEcharts {
margin-#{$top}: 30px;
padding-#{$top}: 30px;
@extend %shadow;
}
</style>
|