#
luxiaotao1123
2023-07-31 a01ef9820aba0095bc28e294e2cf8bca138dcbc5
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
<template>
  <div id="data-view">
    <dv-full-screen-container>
 
      <top-header />
 
      <div class="main-content">
        <digital-flop />
 
        <div class="block-left-right-content">
          <ranking-board />
 
          <div class="block-top-bottom-content">
            <div class="block-top-content">
              <rose-chart />
 
              <water-level-chart />
 
              <scroll-board />
            </div>
 
            <cards />
          </div>
        </div>
      </div>
    </dv-full-screen-container>
  </div>
</template>
 
<script>
import topHeader from './topHeader'
import digitalFlop from './digitalFlop'
import rankingBoard from './rankingBoard'
import roseChart from './roseChart'
import waterLevelChart from './waterLevelChart'
import scrollBoard from './scrollBoard'
import cards from './cards'
 
export default {
  name: 'DataView',
  components: {
    topHeader,
    digitalFlop,
    rankingBoard,
    roseChart,
    waterLevelChart,
    scrollBoard,
    cards
  },
  data () {
    return {}
  },
  methods: {}
}
</script>
 
<style lang="less">
#data-view {
  width: 100%;
  height: 100%;
  background-color: #030409;
  color: #fff;
 
  #dv-full-screen-container {
    background-image: url('./img/bg.png');
    background-size: 100% 100%;
    box-shadow: 0 0 3px blue;
    display: flex;
    flex-direction: column;
  }
 
  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
 
  .block-left-right-content {
    flex: 1;
    display: flex;
    margin-top: 20px;
  }
 
  .block-top-bottom-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-left: 20px;
  }
 
  .block-top-content {
    height: 55%;
    display: flex;
    flex-grow: 0;
    box-sizing: border-box;
    padding-bottom: 20px;
  }
}
</style>