2025-07-09 18:09:23 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="index-nav-top">
|
|
|
|
|
<div class="top-icon">
|
|
|
|
|
<svg-icon icon-class="group" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="top-data">
|
|
|
|
|
<div class="data-title">总人数</div>
|
2025-07-10 14:54:38 +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 14:54:38 +08:00
|
|
|
props:{
|
|
|
|
|
attInfo:{
|
|
|
|
|
type:Object,
|
|
|
|
|
default:()=>{
|
|
|
|
|
return null
|
2025-07-09 18:09:23 +08:00
|
|
|
}
|
2025-07-10 14:54:38 +08:00
|
|
|
}
|
2025-07-09 18:09:23 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|