|
@@ -40,7 +40,7 @@
|
|
<div class="for-month-max-big-box" v-for="(item,index) in year.list" :key="item.key">
|
|
<div class="for-month-max-big-box" v-for="(item,index) in year.list" :key="item.key">
|
|
<p class="for-month-top-big-box" :class="item.disable?'for-month-top-big-box-color':''">{{item.date}}</p>
|
|
<p class="for-month-top-big-box" :class="item.disable?'for-month-top-big-box-color':''">{{item.date}}</p>
|
|
<div class="for-month-bottom-big-box" :class="item.noSignedInCount>0?'red-backgroud-color':''"
|
|
<div class="for-month-bottom-big-box" :class="item.noSignedInCount>0?'red-backgroud-color':''"
|
|
- v-if="!item.disable&&item.signInCount>0" @click.stop="goPage('info',item)">
|
|
|
|
|
|
+ v-if="!item.disable&&(item.signInCount>0||item.noSignedInCount>0)" @click.stop="goPage('info',item)">
|
|
<div class="for-month-bottom-left-min-box">
|
|
<div class="for-month-bottom-left-min-box">
|
|
<p>已签到人员:{{item.signInCount}}</p>
|
|
<p>已签到人员:{{item.signInCount}}</p>
|
|
<p>未签到人员:{{item.noSignedInCount}}</p>
|
|
<p>未签到人员:{{item.noSignedInCount}}</p>
|
|
@@ -62,7 +62,7 @@
|
|
<div class="year-big-box">
|
|
<div class="year-big-box">
|
|
<div class="for-year-big-box" v-for="(item,index) in year.list" :key="item.key">
|
|
<div class="for-year-big-box" v-for="(item,index) in year.list" :key="item.key">
|
|
<p class="for-year-top-big-box" :class="item.disable?'for-year-top-big-box-color':''">{{item.date}}</p>
|
|
<p class="for-year-top-big-box" :class="item.disable?'for-year-top-big-box-color':''">{{item.date}}</p>
|
|
- <div class="for-year-bottom-big-box" :class="!item.disable&&item.noSignedInCount>0?'red-backgroud-color':''" v-if="item.signInCount>0&&!item.disable" @click.stop="goPage('info',item)">{{item.noSignedInCount>0?item.noSignedInCount:item.signInCount}}人</div>
|
|
|
|
|
|
+ <div class="for-year-bottom-big-box" :class="!item.disable&&item.noSignedInCount>0?'red-backgroud-color':''" v-if="(item.signInCount>0||item.noSignedInCount>0)&&!item.disable" @click.stop="goPage('info',item)">{{item.noSignedInCount>0?item.noSignedInCount:item.signInCount}}人</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|