2026-03-25 14:54:15 +08:00
|
|
|
<template>
|
2026-03-27 16:01:49 +08:00
|
|
|
<ChartCard margin="30rpx 0 0 0" title="人员报验、培训及交底数">
|
2026-03-25 14:54:15 +08:00
|
|
|
<view class="education u-flex">
|
|
|
|
|
<view class="education-box">
|
2026-03-27 16:01:49 +08:00
|
|
|
<view class="education-box-lab">人员报验数</view>
|
2026-03-25 14:54:15 +08:00
|
|
|
<view class="education-box-num u-margin-top-20">800</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="education-box">
|
2026-03-27 16:01:49 +08:00
|
|
|
<view class="education-box-lab">培训人次</view>
|
|
|
|
|
<view class="education-box-num u-margin-top-20">800</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="education-box">
|
|
|
|
|
<view class="education-box-lab">技术交底人次</view>
|
2026-03-25 14:54:15 +08:00
|
|
|
<view class="education-box-num u-margin-top-20">800</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</ChartCard>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2026-03-27 16:01:49 +08:00
|
|
|
import ChartCard from '@/components/chartCard.vue';
|
2026-03-25 14:54:15 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2026-03-27 16:01:49 +08:00
|
|
|
.education {
|
|
|
|
|
width: 100%;
|
|
|
|
|
&-box {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
&-lab {
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
}
|
|
|
|
|
&-num {
|
|
|
|
|
color: #333333;
|
|
|
|
|
font-size: 28rpx;
|
2026-03-25 14:54:15 +08:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-27 16:01:49 +08:00
|
|
|
}
|
|
|
|
|
</style>
|