This commit is contained in:
2026-03-25 14:54:15 +08:00
commit ab4646b43a
827 changed files with 123812 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
<template>
<ChartCard margin="0 0 30rpx 0" title="安全费用" >
<view class="cost u-flex">
<view class="cost-box">
<view class="cost-box-lab">费用提取(亿元)</view>
<view class="cost-box-num u-margin-top-20">800</view>
</view>
<view class="cost-box">
<view class="cost-box-lab">费用使用(亿元)</view>
<view class="cost-box-num u-margin-top-20">800</view>
</view>
</view>
</ChartCard>
</template>
<script setup>
import ChartCard from '@/components/chartCard.vue'
</script>
<style lang="scss">
.cost{
width: 100%;
&-box{
flex: 1;
&-lab{
color: #999999;
font-size: 24rpx;
}
&-num{
color: #333333;
font-size: 28rpx;
}
}
}
</style>