YZProjectCloud/yanzhu-ui-vue3/src/views/indexCompents/navTopAttWorkerCount.vue

26 lines
466 B
Vue
Raw Normal View History

2025-07-09 18:09:23 +08:00
<template>
<div class="index-nav-top">
2025-07-10 16:50:49 +08:00
<div class="top-icon">
2025-07-09 18:09:23 +08:00
<svg-icon icon-class="group" />
</div>
<div class="top-data">
<div class="data-title">总人数</div>
2025-07-10 16:50:49 +08:00
<div class="data-number">{{ attInfo ? attInfo.job.total : 0 }}</div>
2025-07-09 18:09:23 +08:00
</div>
</div>
</template>
<script>
//考勤人员数
export default {
2025-07-10 16:50:49 +08:00
props: {
attInfo: {
type: Object,
default: () => {
return null;
},
},
},
};
2025-07-09 18:09:23 +08:00
</script>