大屏页面初始化
This commit is contained in:
8
screen-vue/src/views/screen/Work/components/ChartV01.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV01.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV02.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV02.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV03.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV03.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV04.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV04.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV05.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV05.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV06.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV06.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV07.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV07.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
8
screen-vue/src/views/screen/Work/components/ChartV08.vue
Normal file
8
screen-vue/src/views/screen/Work/components/ChartV08.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
@@ -8,20 +8,36 @@
|
||||
|
||||
<div class="work-section work-main-section">
|
||||
<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>
|
||||
<div class="work-card work-card-1-3">左侧下</div>
|
||||
<div class="work-card work-card-1-3">
|
||||
<ChartV01 :formParams="props.formParams" />
|
||||
</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 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-1-3">中侧下</div>
|
||||
<div class="work-card work-card-2-3">
|
||||
<ChartV04 :formParams="props.formParams" />
|
||||
</div>
|
||||
<div class="work-card work-card-1-3">
|
||||
<ChartV05 :formParams="props.formParams" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<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>
|
||||
<div class="work-card work-card-1-3">右侧下</div>
|
||||
<div class="work-card work-card-1-3">
|
||||
<ChartV06 :formParams="props.formParams" />
|
||||
</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>
|
||||
@@ -30,6 +46,14 @@
|
||||
<script setup>
|
||||
import { ref, watch } from '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({
|
||||
formParams: {
|
||||
|
||||
Reference in New Issue
Block a user