bt-xtgxq-population-bigdata/src/module/ModuleRight3.vue

20 lines
455 B
Vue
Raw Normal View History

2023-11-20 17:56:43 +08:00
<template>
<div class="module">
<ModuleCard2 title="政治面貌统计">
2023-11-21 17:48:18 +08:00
<Pie3d id="pie3d" w="400" h="200" />
2023-11-20 17:56:43 +08:00
</ModuleCard2>
</div>
</template>
<script setup>
import { reactive } from 'vue';
import ModuleCard2 from './card/ModuleCard2.vue';
2023-11-21 17:48:18 +08:00
import Pie3d from '../components/echarts/Pie3d.vue';
2023-11-20 17:56:43 +08:00
</script>
<style lang="stylus" scoped>
2023-11-21 17:48:18 +08:00
.module
.pie-3d
background-image url(assets/imgs/card/bg9.png)
2023-11-20 17:56:43 +08:00
</style>