人员信息、出差报备功能修改
This commit is contained in:
parent
18d4b9abbe
commit
16d78b158f
|
|
@ -28,29 +28,29 @@
|
|||
<div style="margin-left: 10px;font-size: 22px;font-weight: bold;">今日异常统计</div>
|
||||
</div>
|
||||
<div class="right-list">
|
||||
<div class="listItem" style="background-color: #FFF7F1;" @click="toggleDialog(2)">
|
||||
<div class="listItem" style="background-color: #FFF7F1;" @click="toggleDialog(2,'')">
|
||||
<div>迟到人数</div>
|
||||
<h2>{{ todayAbnormalBean.lateNum }}</h2>
|
||||
</div>
|
||||
<div class="listItem" style="background-color: #F7F8FA;" @click="toggleDialog(4)">
|
||||
<div class="listItem" style="background-color: #F7F8FA;" @click="toggleDialog(4,'')">
|
||||
<div>早退人数</div>
|
||||
<h2>{{ todayAbnormalBean.earlyNum }}</h2>
|
||||
</div>
|
||||
<div class="listItem" style="background-color: #FFF2F2;" @click="toggleDialog(3)">
|
||||
<div class="listItem" style="background-color: #FFF2F2;" @click="toggleDialog(3,'')">
|
||||
<div>旷工人数</div>
|
||||
<h2>{{ todayAbnormalBean.skippingNum }}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-list">
|
||||
<div class="listItem" style="background-color: #F0F8FF;" @click="toggleDialog(6)">
|
||||
<div class="listItem" style="background-color: #F0F8FF;" @click="toggleDialog(6,'')">
|
||||
<div>请假人数</div>
|
||||
<h2>{{ todayAbnormalBean.leaveNum }}</h2>
|
||||
</div>
|
||||
<div class="listItem" style="background-color: #FBFFE3;" @click="toggleDialog(9)">
|
||||
<div class="listItem" style="background-color: #FBFFE3;" @click="toggleDialog(9,'')">
|
||||
<div>打卡地异常</div>
|
||||
<h2>{{ todayAbnormalBean.addressErrorNum }}</h2>
|
||||
</div>
|
||||
<div class="listItem" style="background-color: #FFF0FB;" @click="toggleDialog(8)">
|
||||
<div class="listItem" style="background-color: #FFF0FB;" @click="toggleDialog(8,'')">
|
||||
<div>出入异常</div>
|
||||
<h2>{{ todayAbnormalBean.einErrorNum }}</h2>
|
||||
</div>
|
||||
|
|
@ -348,25 +348,25 @@ export default {
|
|||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 27.5%;
|
||||
height: 40%;
|
||||
background: transparent;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.actual{
|
||||
top: 35.5%;
|
||||
left: 5%;
|
||||
top: 88.5%;
|
||||
left: 18%;
|
||||
cursor: pointer;
|
||||
}
|
||||
.expected{
|
||||
top: 24%;
|
||||
left: 12%;
|
||||
top: 60%;
|
||||
left: 44%;
|
||||
cursor: pointer;
|
||||
}
|
||||
.absent{
|
||||
top: 35.5%;
|
||||
left: 17%;
|
||||
top: 88.5%;
|
||||
left: 62%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue