2022-10-17 10:13:22 +08:00
|
|
|
<template>
|
|
|
|
|
<Card title="人员概况">
|
2022-10-17 17:46:04 +08:00
|
|
|
<div class="contentBox">
|
|
|
|
|
<div class="contentTop">
|
|
|
|
|
<div class="img">
|
|
|
|
|
<img src="../assets/images/common/num_skyblue.png" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="contentBtn">
|
|
|
|
|
<p class="num1">6250</p>
|
|
|
|
|
<p class="text">在场总人数</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="img">
|
|
|
|
|
<img style=" margin-left: 25px;" src="../assets/images/common/icon_hs.png" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="contentBtn">
|
|
|
|
|
<p class="num2">5649</p>
|
|
|
|
|
<p class="text">实名制人数</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="contentbut">
|
|
|
|
|
<div class="lw">
|
|
|
|
|
<p>劳务人数</p>
|
|
|
|
|
<p class="number">366</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="cq">
|
|
|
|
|
<p>出勤人数</p>
|
|
|
|
|
<p class="number">236</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tc">
|
|
|
|
|
<p>退场人数</p>
|
|
|
|
|
<p class="number">128</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-10-17 10:13:22 +08:00
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-10-17 17:46:04 +08:00
|
|
|
import Card from "../components/Card.vue";
|
2022-10-17 10:13:22 +08:00
|
|
|
export default {
|
2022-10-17 17:46:04 +08:00
|
|
|
components: { Card }
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.contentBox {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding-top: 20px;
|
2022-10-19 17:23:08 +08:00
|
|
|
padding-bottom: 10px;
|
2022-10-17 17:46:04 +08:00
|
|
|
.contentTop {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding-left: 45px;
|
|
|
|
|
display: flex;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
img {
|
|
|
|
|
height: 56px;
|
|
|
|
|
width: 56px;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-17 17:46:04 +08:00
|
|
|
.contentBtn {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
margin-right: 34px;
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
.num1 {
|
|
|
|
|
color: #66D4D9;
|
|
|
|
|
}
|
|
|
|
|
.num2 {
|
|
|
|
|
color: #f56c35;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
|
font-size: 16px;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-17 17:46:04 +08:00
|
|
|
}
|
|
|
|
|
.contentbut {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
|
.lw,
|
|
|
|
|
.cq,
|
|
|
|
|
.tc {
|
|
|
|
|
width: 102px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-right: 50px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin-top: 21px;
|
|
|
|
|
.number {
|
|
|
|
|
height: 43px;
|
|
|
|
|
width: 102px;
|
|
|
|
|
line-height: 43px;
|
|
|
|
|
font-size: 19px;
|
|
|
|
|
background-image: url(../assets/images/common/num_bg.png);
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
color: #66D4D9;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
2022-10-17 17:46:04 +08:00
|
|
|
}
|
|
|
|
|
.lw{
|
|
|
|
|
margin-left: 40px;
|
2022-10-17 10:13:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|