parent
a2d75e4084
commit
2bab07db4d
@ -0,0 +1,169 @@
|
||||
<template>
|
||||
<div id="data-view">
|
||||
<dv-full-screen-container>
|
||||
<div class="main-header">
|
||||
<top-header />
|
||||
</div>
|
||||
|
||||
<dv-border-box-1 class="main-container">
|
||||
<dv-border-box-3 class="left-chart-container">
|
||||
|
||||
<Left-Chart-1 />
|
||||
<Left-Chart-2 />
|
||||
<Left-Chart-3 />
|
||||
|
||||
</dv-border-box-3>
|
||||
|
||||
<div class="right-main-container">
|
||||
<div class="rmc-top-container">
|
||||
<dv-border-box-3 class="rmctc-left-container">
|
||||
|
||||
<Center-Cmp />
|
||||
|
||||
</dv-border-box-3>
|
||||
|
||||
<div class="rmctc-right-container">
|
||||
<dv-border-box-3 class="rmctc-chart-1">
|
||||
|
||||
<Right-Chart-1 />
|
||||
|
||||
</dv-border-box-3>
|
||||
|
||||
<dv-border-box-4 class="rmctc-chart-2" :reverse="true">
|
||||
|
||||
<Right-Chart-2 />
|
||||
|
||||
</dv-border-box-4>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<dv-border-box-4 class="rmc-bottom-container">
|
||||
|
||||
<Bottom-Charts />
|
||||
|
||||
</dv-border-box-4>
|
||||
</div>
|
||||
</dv-border-box-1>
|
||||
|
||||
</dv-full-screen-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import LeftChart1 from './index7/LeftChart1'
|
||||
import LeftChart2 from './index7/LeftChart2'
|
||||
import LeftChart3 from './index7/LeftChart3'
|
||||
|
||||
import CenterCmp from './index7/CenterCmp'
|
||||
|
||||
import RightChart1 from './index7/RightChart1'
|
||||
import RightChart2 from './index7/RightChart2'
|
||||
|
||||
import BottomCharts from './index7/BottomCharts'
|
||||
|
||||
import topHeader from './index7/topHeader'
|
||||
export default {
|
||||
name: 'DataView',
|
||||
components: {
|
||||
topHeader,
|
||||
LeftChart1,
|
||||
LeftChart2,
|
||||
LeftChart3,
|
||||
CenterCmp,
|
||||
RightChart1,
|
||||
RightChart2,
|
||||
BottomCharts
|
||||
},
|
||||
data () {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="less">
|
||||
#data-view {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #030409;
|
||||
color: #fff;
|
||||
|
||||
#dv-full-screen-container {
|
||||
background-image: url("~@/assets/board/cs7/bg.png");
|
||||
background-size: 100% 100%;
|
||||
box-shadow: 0 0 3px blue;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.main-header {
|
||||
height: 80px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
|
||||
.mh-left {
|
||||
font-size: 20px;
|
||||
color: rgb(1,134,187);
|
||||
|
||||
a:visited {
|
||||
color: rgb(1,134,187);
|
||||
}
|
||||
}
|
||||
|
||||
.mh-middle {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.mh-left, .mh-right {
|
||||
width: 450px;
|
||||
}
|
||||
}
|
||||
|
||||
.main-container {
|
||||
height: calc(~"100% - 80px");
|
||||
margin-left: 0px;
|
||||
.border-box-content {
|
||||
//padding: 20px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
|
||||
.left-chart-container {
|
||||
width: 22%;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.border-box-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.right-main-container {
|
||||
width: 78%;
|
||||
padding-left: 5px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.rmc-top-container {
|
||||
height: 65%;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.rmctc-left-container {
|
||||
width: 65%;
|
||||
}
|
||||
|
||||
.rmctc-right-container {
|
||||
width: 35%;
|
||||
}
|
||||
|
||||
.rmc-bottom-container {
|
||||
height: 35%;
|
||||
}
|
||||
|
||||
.rmctc-chart-1, .rmctc-chart-2 {
|
||||
height: 50%;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue