This commit is contained in:
2026-08-17 11:01:21 +08:00
parent 6e07cab51f
commit 255573ed06
705 changed files with 8762 additions and 36677 deletions
+10 -3
View File
@@ -1,10 +1,10 @@
<template>
<ChartCard margin="0 0 30rpx 0" title="作业许可数">
<view class="work u-flex u-row-between">
<view class="work u-flex u-row-between" @click="router.push('/pages/index/workPermit/index')">
<view class="work-box u-flex u-row-center">
<view class="work-box-icon"><u-icon name="xukezheng" color="#8CEEFF" custom-prefix="custom-icon" size="60"></u-icon></view>
<view class="work-box-row u-padding-left-20">
<text class="work-box-row-num">9000</text>
<text class="work-box-row-num">{{ licensesData?.LicensesNum || 0 }}</text>
<text class="work-box-row-lab">许可证总数</text>
</view>
</view>
@@ -14,7 +14,7 @@
<u-icon name="guanbi" color="#ee6666" custom-prefix="custom-icon" size="60"></u-icon>
</view>
<view class="work-box-row u-padding-left-20">
<text class="work-box-row-num">9000</text>
<text class="work-box-row-num">{{ licensesData?.LicensesCloseNum || 0 }}</text>
<text class="work-box-row-lab">高风险作业许可进行中数量</text>
</view>
</view>
@@ -24,6 +24,13 @@
<script setup>
import ChartCard from '@/components/chartCard.vue';
import {router} from '@/utils'
defineProps({
licensesData: {
type: Object,
default: () => {}
}
});
</script>
<style lang="scss" scoped>