2023-11-20 17:56:43 +08:00
|
|
|
<template>
|
|
|
|
<div class="module">
|
|
|
|
<ModuleCard2 title="特殊信息类人员">
|
2023-11-20 18:04:58 +08:00
|
|
|
<div class="module-card2-container">
|
|
|
|
<div class="person-count1-container">
|
|
|
|
<PersonCount1/>
|
|
|
|
</div>
|
|
|
|
<div class="person-count2-container">
|
|
|
|
<PersonCount2 class="count1"/>
|
|
|
|
<PersonCount2 class="count2" :bg-type="2"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
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-20 18:04:58 +08:00
|
|
|
import PersonCount1 from '../components/card/PersonCount1.vue';
|
|
|
|
import PersonCount2 from '../components/card/PersonCount2.vue';
|
2023-11-20 17:56:43 +08:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2023-11-20 18:04:58 +08:00
|
|
|
.module
|
|
|
|
.module-card2-container
|
|
|
|
display flex
|
|
|
|
height 100%
|
|
|
|
align-items center
|
|
|
|
.person-count1-container
|
|
|
|
width 160px
|
|
|
|
display flex
|
|
|
|
justify-content: center
|
|
|
|
.person-count2-container
|
|
|
|
width 200px
|
|
|
|
height 60px
|
|
|
|
position relative
|
|
|
|
.count1
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 0
|
|
|
|
.count2
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
left 110px
|
2023-11-20 17:56:43 +08:00
|
|
|
</style>
|