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
| <template>
| <div id="water-level-chart">
| <div class="water-level-chart-title">计划资金累计完成情况</div>
|
| <div class="water-level-chart-details">
| 累计完成<span>235,680</span>元
| </div>
|
| <div class="chart-container">
| <dv-water-level-pond :config="config" />
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: 'WaterLevelChart',
| data () {
| return {
| config: {
| data: [45],
| shape: 'round',
| waveHeight: 25,
| waveNum: 2
| }
| }
| }
| }
| </script>
|
| <style lang="less">
| #water-level-chart {
| width: 20%;
| box-sizing: border-box;
| margin-left: 20px;
| background-color: rgba(6, 30, 93, 0.5);
| border-top: 2px solid rgba(1, 153, 209, .5);
| display: flex;
| flex-direction: column;
|
| .water-level-chart-title {
| font-weight: bold;
| height: 50px;
| display: flex;
| align-items: center;
| font-size: 20px;
| justify-content: center;
| }
|
| .water-level-chart-details {
| height: 15%;
| display: flex;
| justify-content: center;
| font-size: 17px;
| align-items: flex-end;
|
| span {
| font-size: 35px;
| font-weight: bold;
| color: #58a1ff;
| margin: 0 5px;
| margin-bottom: -5px;
| }
| }
|
| .chart-container {
| flex: 1;
| display: flex;
| justify-content: center;
| align-items: center;
| }
|
| .dv-water-pond-level {
| max-width: 90%;
| width: 200px;
| height: 200px;
| border: 10px solid #19c3eb;
| border-radius: 50%;
|
| ellipse {
| stroke: transparent !important;
| }
|
| text {
| font-size: 40px;
| }
| }
| }
| </style>
|
|