样式修改
This commit is contained in:
commit
0d12846480
|
@ -94,11 +94,11 @@
|
|||
<div style="font-size: 15px;font-weight: 600;margin-bottom: 10px;">{{ item.jxlName }}</div>
|
||||
<a-row style="margin-bottom: 10px;text-align: center;border-bottom: 1px #f0f0f0 solid ;padding-bottom: 10px;">
|
||||
<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-col :span="8">总数</a-col>
|
||||
<a-col :span="8">可直播</a-col>
|
||||
<a-col :span="8">开放听课</a-col>
|
||||
<a-col :span="8">数量</a-col>
|
||||
</a-row>
|
||||
<a-row style="text-align: center;">
|
||||
<a-col :span="8" style="font-weight: 600;">{{ item.child.filter(x => x?.nowIsClass).length || 0}}间</a-col>
|
||||
|
@ -199,7 +199,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?'是':'否' }}
|
||||
|
|
Loading…
Reference in New Issue