11.08版本

This commit is contained in:
9w2lr 2023-11-08 19:23:36 +08:00
parent d164473eaa
commit 4465398e1c
1 changed files with 35 additions and 25 deletions

View File

@ -1,6 +1,8 @@
<template>
<div>
<index-chart v-if="indexStyle==1"></index-chart>
<a-card :bordered="false">
<div class="title">该系统为测试系统</div>
</a-card>
<!-- <index-chart v-if="indexStyle==1"></index-chart>
<index-bdc v-if="indexStyle==2"></index-bdc>
<index-task v-if="indexStyle==3"></index-task>
<div style="width: 100%;text-align: right;margin-top: 20px">
@ -10,32 +12,40 @@
<a-radio :value="2">统计图表2</a-radio>
<a-radio :value="3">任务表格</a-radio>
</a-radio-group>
</div>
</div>
</div> -->
</template>
<script>
import IndexChart from './IndexChart'
import IndexTask from "./IndexTask"
import IndexBdc from './IndexBdc'
export default {
name: "Analysis",
components: {
IndexChart,
IndexTask,
IndexBdc
},
data() {
return {
indexStyle:1
}
},
created() {
},
methods: {
import IndexChart from './IndexChart'
import IndexTask from "./IndexTask"
import IndexBdc from './IndexBdc'
export default {
name: "Analysis",
components: {
IndexChart,
IndexTask,
IndexBdc
},
data() {
return {
indexStyle: 1
}
},
created() {
},
methods: {
}
</script>
}
</script>
<style scoped>
.title {
width: 100%;
font-size: 20px;
font-weight: bold;
text-align: center;
margin-top: 20px;
}
</style>