2021-12-21 14:57:31 +08:00
|
|
|
<template>
|
2022-01-12 10:41:26 +08:00
|
|
|
<div class="go-bg-point"></div>
|
2021-12-21 14:57:31 +08:00
|
|
|
<div class="go-chart">
|
|
|
|
<n-layout>
|
2022-01-05 18:04:41 +08:00
|
|
|
<HeaderPro>
|
|
|
|
<template #left>
|
|
|
|
<HeaderLeftBtn />
|
|
|
|
</template>
|
2022-01-05 20:52:49 +08:00
|
|
|
<template #center>
|
|
|
|
<HeaderTitle />
|
|
|
|
</template>
|
2022-01-05 18:04:41 +08:00
|
|
|
<template #ri-left>
|
|
|
|
<HeaderRightBtn />
|
|
|
|
</template>
|
|
|
|
</HeaderPro>
|
2022-01-06 13:45:51 +08:00
|
|
|
<n-layout-content content-style="overflow:hidden; display: flex">
|
|
|
|
<ContentCharts />
|
2022-01-09 17:12:35 +08:00
|
|
|
<ContentLayers />
|
2022-01-11 14:15:14 +08:00
|
|
|
<ContentDrag />
|
2022-01-06 15:37:44 +08:00
|
|
|
<ContentDetails />
|
2022-01-05 21:05:55 +08:00
|
|
|
</n-layout-content>
|
2021-12-21 14:57:31 +08:00
|
|
|
</n-layout>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { HeaderPro } from '@/layout/components/HeaderPro'
|
2022-01-05 21:12:38 +08:00
|
|
|
import { HeaderLeftBtn } from './components/HeaderLeftBtn/index'
|
|
|
|
import { HeaderRightBtn } from './components/HeaderRightBtn/index'
|
|
|
|
import { HeaderTitle } from './components/HeaderTitle/index'
|
2022-01-06 13:45:51 +08:00
|
|
|
import { ContentLayers } from './components/ContentLayers/index'
|
|
|
|
import { ContentCharts } from './components/ContentCharts/index'
|
2022-01-11 14:15:14 +08:00
|
|
|
import { ContentDrag } from './components/ContentDrag/index'
|
2022-01-06 15:37:44 +08:00
|
|
|
import { ContentDetails } from './components/ContentDetails/index'
|
2021-12-21 14:57:31 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
$height: 100vh;
|
2022-01-12 10:41:26 +08:00
|
|
|
@include go('bg-point') {
|
2022-01-13 16:20:25 +08:00
|
|
|
@include background-image('background-point');
|
|
|
|
@extend .go-point-bg;
|
2022-01-12 10:41:26 +08:00
|
|
|
}
|
2021-12-21 14:57:31 +08:00
|
|
|
@include go('chart') {
|
|
|
|
height: $height;
|
|
|
|
overflow: hidden;
|
|
|
|
@include background-image('background-image');
|
|
|
|
}
|
|
|
|
</style>
|