2023年10月22日 修改智慧教室页面

This commit is contained in:
bai 2023-10-22 15:37:09 +08:00
parent 65bf39cde5
commit 7f64f66a61
1 changed files with 9 additions and 4 deletions

View File

@ -86,10 +86,10 @@
<a-row style="margin-bottom: 10px;text-align: center;">
<a-col :span="8">总数</a-col>
<a-col :span="8">可直播</a-col>
<a-col :span="8">开放听课</a-col>
<a-col :span="8">数量</a-col>
<a-col :span="8" style="font-weight: 600;">{{ item.jsNum }}</a-col>
<a-col :span="8" style="font-weight: 600;">{{ cardList.length }}</a-col>
<a-col :span="8" style="font-weight: 600;">{{ getSysConfig().flag5 == 0?'否':'是' }}</a-col>
<a-col :span="8" style="font-weight: 600;">{{ item.child.length }}</a-col>
<a-col :span="8" style="font-weight: 600;">{{ item.child.filter(x => x.allIsOnLine == 4).length || 0 }}</a-col>
</a-row>
<a-row style="text-align: center;">
<a-col :span="8">正在上课</a-col>
@ -190,7 +190,12 @@
</template>
</a-table-column>
<a-table-column title="教学楼" data-index="jxlName"/>
<a-table-column title="教室" data-index="jsmc"/>
<a-table-column title="教室" data-index="jsmc">
<template #default="{ text, record }">
<a :href="'http://'+record.ip" target="_blank">{{ text }}</a>
</template>
</a-table-column>
<a-table-column title="直播功能" align="center" data-index="sfyx">
<template #default="{ text }">
{{ text == 0?'是':'否' }}