index.vue
913 字节
<template>
<IndexChart v-if="indexStyle === 0" />
<IndexDef v-if="indexStyle === 1" />
<IndexBdc v-if="indexStyle == 2" />
<IndexTask v-if="indexStyle == 3" />
<!-- <div style="width: 100%; text-align: right; margin-top: 20px">-->
<!-- 首页主题:-->
<!-- <a-radio-group v-model:value="indexStyle">-->
<!-- <a-radio :value="0">默认</a-radio>-->
<!-- <a-radio :value="1">销量统计</a-radio>-->
<!-- <a-radio :value="2">业务统计</a-radio>-->
<!-- <a-radio :value="3">我的任务</a-radio>-->
<!-- </a-radio-group>-->
<!-- </div>-->
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import IndexDef from './homePage/IndexDef.vue';
import IndexChart from './homePage/IndexChart.vue';
import IndexBdc from './homePage/IndexBdc.vue';
import IndexTask from './homePage/IndexTask.vue';
const indexStyle = ref(0);
</script>