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