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
| <template>
| <div class="warnRightChartsContainer">
| <div class="rightTop commonTitle">
| <div class="topTitle">
| <span>重点防护对象</span>
| </div>
| <WarnList />
| </div>
| <div class="rightMiddle commonTitle">
| <div class="topTitle">
| <span>专项监测设备</span>
| </div>
| <DisposalPro />
| </div>
| <div class="rightBottom commonTitle">
| <div class="topTitle">
| <span>动态图险分析</span>
| </div>
| <AssociationWarn />
| </div>
| </div>
| </template>
|
| <script>
| import WarnList from '@/components/warnAnalysis/rightCharts/WarnList'
| import DisposalPro from '@/components/warnAnalysis/rightCharts/DisposalPro'
| import AssociationWarn from '@/components/warnAnalysis/rightCharts/AssociationWarn'
| export default {
| name: 'rightCharts',
| components: {
| WarnList,
| DisposalPro,
| AssociationWarn
| },
| data() {
| return {}
| },
| created() {
| this.init()
| },
| methods: {
| init() {}
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .warnRightChartsContainer {
| width: 100%;
| height: 100%;
| box-sizing: border-box;
| overflow: hidden;
| padding: 20px 20px 0 20px;
|
| .rightTop {
| width: 100%;
| height: 31%;
| box-sizing: border-box;
| }
|
| .rightMiddle {
| margin: 10px 0;
| width: 100%;
| height: 38%;
| box-sizing: border-box;
| overflow: hidden;
| }
|
| .rightBottom {
| width: 100%;
| height:31%;
| box-sizing: border-box;
| }
| }
| </style>
|
|