26 lines
466 B
Vue
26 lines
466 B
Vue
<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>
|
|
<div class="data-number">{{ attInfo ? attInfo.job.total : 0 }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
//考勤人员数
|
|
export default {
|
|
props: {
|
|
attInfo: {
|
|
type: Object,
|
|
default: () => {
|
|
return null;
|
|
},
|
|
},
|
|
},
|
|
};
|
|
</script>
|