2024年1月10日 修改智慧教室分项目数量显示不正确的问题

This commit is contained in:
bai 2024-01-10 16:16:24 +08:00
parent 03c046b36b
commit f6235a4838
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
</a-col>
<a-col :span="6">
<div class="numberBlob handleCss" @click="openDetail({})">
<div class="numSpan blue">{{ leftList.length }}</div>
<div class="numSpan blue">{{ leftList.filter(x => x.zbgn == '0').length || 0 }}</div>
<div class="numberName">
<!-- <RiseOutlined class="orange"/> -->
可直播
@ -118,7 +118,7 @@
</template>
<a-row style="margin-bottom: 10px;text-align: center;border-bottom: 1px #f0f0f0 solid ;padding-bottom: 10px;">
<a-col class="hover handleCss" :span="6" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName, zbgn: undefined })"><span>{{ item.jsNum }}</span></a-col>
<a-col class="hover" :span="6" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName })"><span>{{ item.child.length }}</span></a-col>
<a-col class="hover" :span="6" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName })"><span>{{ item.child.filter(x => x.zbgn == '0').length || 0 }}</span></a-col>
<a-col class="hover" :span="6" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName, sfyx: '0' })"><span>{{ item.child.filter(x => x.sfyx == 0).length || 0 }}</span></a-col>
<a-col class="" :span="6" style="font-weight: 600;" v-if="!statusLogList.length"><span>未检测</span></a-col>
<a-col class="" :span="6" style="font-weight: 600;" v-else><span>{{ statusLogList.filter(x => x.jxlName == item.jxlName && x.type != 'green' ).length }}</span></a-col>