大屏页面初始化

This commit is contained in:
2026-03-04 10:05:05 +08:00
parent faaffef2f8
commit 0fd9ae43c6
9 changed files with 96 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -0,0 +1,8 @@
<template>
</template>
<script>
</script>
<style>
</style>

View File

@@ -8,20 +8,36 @@
<div class="work-section work-main-section"> <div class="work-section work-main-section">
<div class="work-col work-col-1-3 work-left-col"> <div class="work-col work-col-1-3 work-left-col">
<div class="work-card work-card-1-3">左侧上</div> <div class="work-card work-card-1-3">
<div class="work-card work-card-1-3">左侧中</div> <ChartV01 :formParams="props.formParams" />
<div class="work-card work-card-1-3">左侧下</div> </div>
<div class="work-card work-card-1-3">
<ChartV02 :formParams="props.formParams" />
</div>
<div class="work-card work-card-1-3">
<ChartV03 :formParams="props.formParams" />
</div>
</div> </div>
<div class="work-col work-col-1-3 work-middle-col"> <div class="work-col work-col-1-3 work-middle-col">
<div class="work-card work-card-2-3">中侧上</div> <div class="work-card work-card-2-3">
<div class="work-card work-card-1-3">中侧下</div> <ChartV04 :formParams="props.formParams" />
</div>
<div class="work-card work-card-1-3">
<ChartV05 :formParams="props.formParams" />
</div>
</div> </div>
<div class="work-col work-col-1-3 work-right-col"> <div class="work-col work-col-1-3 work-right-col">
<div class="work-card work-card-1-3">右侧上</div> <div class="work-card work-card-1-3">
<div class="work-card work-card-1-3">右侧中</div> <ChartV06 :formParams="props.formParams" />
<div class="work-card work-card-1-3">右侧下</div> </div>
<div class="work-card work-card-1-3">
<ChartV07 :formParams="props.formParams" />
</div>
<div class="work-card work-card-1-3">
<ChartV08 :formParams="props.formParams" />
</div>
</div> </div>
</div> </div>
</div> </div>
@@ -30,6 +46,14 @@
<script setup> <script setup>
import { ref, watch } from 'vue'; import { ref, watch } from 'vue';
import ChartTop from './components/ChartTop.vue' import ChartTop from './components/ChartTop.vue'
import ChartV01 from './components/ChartV01.vue';
import ChartV02 from './components/ChartV02.vue';
import ChartV03 from './components/ChartV03.vue';
import ChartV04 from './components/ChartV04.vue';
import ChartV05 from './components/ChartV05.vue';
import ChartV06 from './components/ChartV06.vue';
import ChartV07 from './components/ChartV07.vue';
import ChartV08 from './components/ChartV08.vue';
const props = defineProps({ const props = defineProps({
formParams: { formParams: {