fix: 修改header层级

This commit is contained in:
MTrun
2022-04-10 19:05:14 +08:00
parent 10a21c9f6b
commit 533af6b2f9
7 changed files with 9 additions and 19 deletions
+8 -18
View File
@@ -47,22 +47,12 @@ const chartEditStore = useChartEditStore()
// 记录初始化
chartHistoryStoreStore.canvasInit(chartEditStore.getEditCanvas)
const HeaderLeftBtn = loadAsyncComponent(() =>
import('./headerLeftBtn/index.vue')
)
const HeaderRightBtn = loadAsyncComponent(() =>
import('./headerRightBtn/index.vue')
)
const HeaderTitle = loadAsyncComponent(() => import('./headerTitle/index.vue'))
const ContentLayers = loadAsyncComponent(() =>
import('./contentLayers/index.vue')
)
const ContentCharts = loadAsyncComponent(() =>
import('./contentCharts/index.vue')
)
const ContentConfigurations = loadAsyncComponent(() =>
import('./contentConfigurations/index.vue')
)
const HeaderLeftBtn = loadAsyncComponent(() => import('./contentHeader/headerLeftBtn/index.vue'))
const HeaderRightBtn = loadAsyncComponent(() => import('./contentHeader/headerRightBtn/index.vue'))
const HeaderTitle = loadAsyncComponent(() => import('./contentHeader/headerTitle/index.vue'))
const ContentLayers = loadAsyncComponent(() => import('./contentLayers/index.vue'))
const ContentCharts = loadAsyncComponent(() => import('./contentCharts/index.vue'))
const ContentConfigurations = loadAsyncComponent(() => import('./contentConfigurations/index.vue'))
// 右键
const {
@@ -74,10 +64,10 @@ const {
</script>
<style lang="scss" scoped>
@include go('chart') {
@include go("chart") {
height: 100vh;
width: 100vw;
overflow: hidden;
@include background-image('background-image');
@include background-image("background-image");
}
</style>