IDCDatasync-vue/src/views/dashboard/Analysis.vue

51 lines
1.0 KiB
Vue
Raw Normal View History

2025-01-15 20:19:34 +08:00
<template>
<div>
2025-01-21 17:34:36 +08:00
<div class="huanying"> 您好欢迎使用末端数据接入处理系统</div>
2025-01-15 20:19:34 +08:00
<!-- <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">
请选择首页样式
<a-radio-group v-model="indexStyle">
<a-radio :value="1">统计图表</a-radio>
<a-radio :value="2">统计图表2</a-radio>
<a-radio :value="3">任务表格</a-radio>
</a-radio-group>
</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 {
2025-03-07 15:44:35 +08:00
indexStyle:2
2025-01-15 20:19:34 +08:00
}
},
created() {
},
methods: {
}
}
</script>
<style scoped>
.huanying{
color: #00def4;
font-size: 23px;
padding: 40px;
}
</style>