2026-03-27 16:01:49 +08:00
|
|
|
<template>
|
|
|
|
|
<ChartCard margin="30rpx 0 0 0" title="设备材料及机具报验数">
|
2026-03-27 18:08:08 +08:00
|
|
|
<view class="measuring u-flex u-row-between">
|
2026-03-27 16:01:49 +08:00
|
|
|
<view class="measuring-box u-flex u-row-center">
|
2026-03-27 18:08:08 +08:00
|
|
|
<view class="measuring-box-icon"><u-icon name="shebei" color="#e28ea3" custom-prefix="custom-icon" size="60"></u-icon></view>
|
2026-03-27 16:01:49 +08:00
|
|
|
<view class="measuring-box-row u-padding-left-20">
|
|
|
|
|
<text class="measuring-box-row-num">900台</text>
|
|
|
|
|
<text class="measuring-box-row-lab">设备材料报验数</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="measuring-box u-flex u-row-center">
|
2026-03-27 18:08:08 +08:00
|
|
|
<view class="measuring-box-icon"><u-icon name="jijubaoyan" color="#36d2ad" custom-prefix="custom-icon" size="60"></u-icon></view>
|
2026-03-27 16:01:49 +08:00
|
|
|
<view class="measuring-box-row u-padding-left-20">
|
|
|
|
|
<text class="measuring-box-row-num">9000台</text>
|
|
|
|
|
<text class="measuring-box-row-lab">机具报验数</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</ChartCard>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import ChartCard from '@/components/chartCard.vue';
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.measuring {
|
|
|
|
|
padding: 20rpx 0;
|
|
|
|
|
&-box {
|
|
|
|
|
&-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
&-lab {
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
margin-top: 12rpx;
|
|
|
|
|
}
|
|
|
|
|
&-num {
|
|
|
|
|
color: #333333;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|