| | |
| | | <template> |
| | | <div class="container"> |
| | | 'statistics' |
| | | <left-container class="left-container"></left-container> |
| | | <right-container class="right-container"></right-container> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import leftContainer from './components/leftContainer' |
| | | import rightContainer from './components/rightContainer' |
| | | |
| | | export default { |
| | | name: 'statistics', |
| | | components:{leftContainer,rightContainer}, |
| | | |
| | | data(){ |
| | | return { |
| | | |
| | |
| | | <style scoped lang="scss"> |
| | | .container { |
| | | position: relative; |
| | | width: 100%; |
| | | .left-container { |
| | | display: flex; |
| | | flex-direction: column; |
| | | position: absolute; |
| | | top: 60px; |
| | | left: 0; |
| | | width: 400px; |
| | | height: calc(100vh - 60px); |
| | | z-index: 90; |
| | | } |
| | | |
| | | .right-container { |
| | | display: flex; |
| | | flex-direction: column; |
| | | position: absolute; |
| | | top: 60px; |
| | | right: 0; |
| | | width: 400px; |
| | | height: calc(100vh - 60px); |
| | | z-index: 90; |
| | | } |
| | | } |
| | | |
| | | </style> |