| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div class="go-chart">
- <n-layout>
- <HeaderPro>
- <template #left>
- <HeaderLeftBtn />
- </template>
- <template #center>
- <HeaderTitle />
- </template>
- <template #ri-left>
- <HeaderRightBtn />
- </template>
- </HeaderPro>
- <n-layout-content content-style="overflow:hidden; display: flex">
- <ContentCharts />
- <ContentLayers />
- <ContentDetails />
- </n-layout-content>
- </n-layout>
- </div>
- </template>
- <script setup lang="ts">
- import { HeaderPro } from '@/layout/components/HeaderPro'
- import { HeaderLeftBtn } from './components/HeaderLeftBtn/index'
- import { HeaderRightBtn } from './components/HeaderRightBtn/index'
- import { HeaderTitle } from './components/HeaderTitle/index'
- import { ContentLayers } from './components/ContentLayers/index'
- import { ContentCharts } from './components/ContentCharts/index'
- import { ContentDetails } from './components/ContentDetails/index'
- </script>
- <style lang="scss" scoped>
- @include go("chart") {
- height: 100vh;
- width: 100vw;
- overflow: hidden;
- @include background-image('background-image');
- }
- </style>
|