2023年10月28日 智慧教室新增钻取,

This commit is contained in:
bai 2023-10-28 03:07:44 +08:00
parent 151e3999d9
commit 5cb9daa033
2 changed files with 733 additions and 31 deletions

View File

@ -8,7 +8,7 @@
<!-- -<i class="fa-sharp fa-solid fa-user"></i>- -->
<a-row class="" :gutter="[16,16]">
<a-col :xs="{ span: 8 }" :sm="{ span: 8 }" :lg="{ span: 8 }">
<div class="numberBlob handleCss" @click="() => queryParam = {}">
<div class="numberBlob handleCss" @click="openDetail({})">
<div class="numSpan">{{ allClassNum }}</div>
<div class="numberName">
<!-- <StockOutlined class="blue"/> -->
@ -17,7 +17,7 @@
</div>
</a-col>
<a-col :xs="{ span: 8 }" :sm="{ span: 8 }" :lg="{ span: 8 }">
<div class="numberBlob handleCss" @click="() => (queryParam = {},queryParam.sfyx = '0')">
<div class="numberBlob handleCss" @click="openDetail({ sfyx: '0' })">
<div class="numSpan blue">{{ leftList.length }}</div>
<div class="numberName">
<!-- <RiseOutlined class="orange"/> -->
@ -26,7 +26,7 @@
</div>
</a-col>
<a-col :xs="{ span: 8 }" :sm="{ span: 8 }" :lg="{ span: 8 }">
<div class="numberBlob handleCss" @click="() => (queryParam = {},queryParam.onLineClassType = 'red')">
<div class="numberBlob handleCss" @click="openDetail({ onLineClassType: 'red' })">
<div class="numSpan orange" style="font-size: 24px;height: 50px;line-height: 50px;">未检测</div>
<div class="numberName">
<!-- <RiseOutlined class="orange"/> -->
@ -44,7 +44,7 @@
<!-- -<i class="fa-sharp fa-solid fa-user"></i>- -->
<a-row class="" :gutter="[16,16]">
<a-col :xs="{ span: 6 }" :sm="{ span: 6 }" :lg="{ span: 6 }">
<div class="numberBlob handleCss" @click="() => (queryParam = {},queryParam.nowIsClass = true)">
<div class="numberBlob handleCss" @click="openDetail({ nowIsClass: true })">
<div class="numSpan">{{ (leftList.filter(x => x?.nowIsClass).length || 0) }}</div>
<div class="numberName">
<!-- <StockOutlined class="blue"/> -->
@ -53,7 +53,7 @@
</div>
</a-col>
<a-col :xs="{ span: 6 }" :sm="{ span: 6 }" :lg="{ span: 6 }">
<div class="numberBlob handleCss" @click="() => (queryParam = {},queryParam.sfyx2 = '0')">
<div class="numberBlob handleCss" @click="openDetail({ sfyx2: '0' })">
<div class="numSpan orange" style="font-size: 24px;height: 50px;line-height: 50px;">{{ getSysConfig().flag5 == 0?'否':'是' }}</div>
<div class="numberName">
<!-- <RiseOutlined class="orange"/> -->
@ -62,7 +62,7 @@
</div>
</a-col>
<a-col :xs="{ span: 6 }" :sm="{ span: 6 }" :lg="{ span: 6 }">
<div class="numberBlob handleCss" @click="() => (queryParam = {},queryParam.onLineClassType = 'green')">
<div class="numberBlob handleCss" @click="openDetail({ onLineClassType: 'green' })">
<div class="numSpan blue">{{ (leftList.filter(x => x?.child['教师近景']?.isOnLine).length || 0) }}</div>
<div class="numberName">
<!-- <RiseOutlined class="orange"/> -->
@ -71,7 +71,7 @@
</div>
</a-col>
<a-col :xs="{ span: 6 }" :sm="{ span: 6 }" :lg="{ span: 6 }">
<div class="numberBlob handleCss" @click="() => (queryParam = {},queryParam.onLineClassType = 'red')">
<div class="numberBlob handleCss" @click="openDetail({ onLineClassType: 'red' })">
<div class="numSpan orange">{{ (leftList.filter(x => !x?.child['教师近景']?.isOnLine).length || 0) }}</div>
<div class="numberName">
<!-- <RiseOutlined class="orange"/> -->
@ -93,20 +93,20 @@
<a-card bordered hoverable @click="() => (currentCardIndex = index,searchReset())" :class="currentCardIndex == index?'active':''">
<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;">{{ 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" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName})">{{ item.jsNum }}</a-col>
<a-col :span="8" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName, sfyx: '0'})">{{ item.child.length }}</a-col>
<a-col :span="8" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName})">{{ item.child.filter(x => x.allIsOnLine == 4).length || 0 }}</a-col>
<a-col :span="8" @click="openDetail({ jxlName: item.jxlName})">总数</a-col>
<a-col :span="8" @click="openDetail({ jxlName: item.jxlName, sfyx: '0'})">可直播</a-col>
<a-col :span="8" @click="openDetail({ jxlName: item.jxlName })">数量</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>
<a-col :span="8" style="font-weight: 600;">{{ item.child.filter(x => x?.child['教师近景']?.isOnLine).length || 0}}</a-col>
<a-col :span="8" style="font-weight: 600;">{{ item.child.filter(x => !x?.child['教师近景']?.isOnLine).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" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName, nowIsClass: true})">{{ item.child.filter(x => x?.nowIsClass).length || 0}}</a-col>
<a-col :span="8" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName, onLineClassType: 'green'})">{{ item.child.filter(x => x?.child['教师近景']?.isOnLine).length || 0}}</a-col>
<a-col :span="8" style="font-weight: 600;" @click="openDetail({ jxlName: item.jxlName, onLineClassType: 'red'})">{{ item.child.filter(x => !x?.child['教师近景']?.isOnLine).length || 0 }}</a-col>
<a-col :span="8" @click="openDetail({ jxlName: item.jxlName, nowIsClass: true})">正在上课</a-col>
<a-col :span="8" @click="openDetail({ jxlName: item.jxlName, onLineClassType: 'green'})">正在直播</a-col>
<a-col :span="8" @click="openDetail({ jxlName: item.jxlName, onLineClassType: 'red'})">直播异常</a-col>
</a-row>
</a-card>
</a-col>
@ -238,7 +238,7 @@
</span>
</template>
</a-table-column>
<a-table-column title="当前有课" align="center" data-index="nowIsClass">
<a-table-column title="(即将/当前)有课" align="center" data-index="nowIsClass">
<template #default="{ record }">
{{ record?.nowIsClass?'是':'否' }}
</template>
@ -304,6 +304,7 @@
<a-modal :visible="isShowAllLive" width="80%" style="top: 20px" title="直播" :ok-button-props="{ style: { display: 'none' } }" cancelText="关闭" @cancel="() => (isShowAllLive = false,showAllLiveRef.close())">
<showAllLive ref="showAllLiveRef" :currentItem="currentItem" :isShowAllLive="isShowAllLive"/>
</a-modal>
<indexDetail ref="indexDetailRef" :leftList="leftList" @reload="loadData"/>
</template>
<script lang="ts" setup name="zhihuijiaoshiIndexPage">
import { defHttp } from '/@/utils/http/axios';
@ -312,6 +313,7 @@ import { nextTick } from 'vue';
import videojs from "video.js";
import { useMessage } from '/@/hooks/web/useMessage';
import showAllLive from './showAllLive.vue';
import indexDetail from './indexDetail.vue';
import { execAvyApi, getAvyCtrlLiveOpenOrCloseUrl } from "/@/views/site/utils/index";
import { JInput } from '/@/components/Form';
import { resumeJob, pauseJob } from '/@/views/monitor/quartz/quartz.api';
@ -322,6 +324,7 @@ import { getSysConfig } from '/@/views/site/utils/index';
// const _document:any = window.document;
const showAllLiveRef = ref();
const indexDetailRef = ref();
const leftList:Ref<any> = ref([]);
const cardList:Ref<any> = ref([]);
@ -390,6 +393,7 @@ const ipagination = ref(
function loadData(){
loading.value = true;
indexDetailRef.value.changeLoadDataLoading(true);
let getListAction:any = [];
cardList.value = [];
let liveIsExist = (x) => {
@ -456,10 +460,12 @@ function loadData(){
});
cardList.value = Object.values(jxlMap);
filterComputedDataSource.value = filterDataSource();
loading.value = false;
indexDetailRef.value.changeLoadDataLoading(false);
}
loading.value = false;
nextTick(() => {
leftList.value.forEach(item => {
let child = item.child;
@ -492,6 +498,14 @@ function loadData(){
getJsjbxxList();
}
function openDetail(param){
console.log(`🚀 -----------------------------------------------------------------------🚀`);
console.log(`🚀 ~ file: index.vue:501 ~ openDetail ~ indexDetailRef:`, indexDetailRef);
console.log(`🚀 -----------------------------------------------------------------------🚀`);
indexDetailRef.value.open(param);
// indexDetailRef.value.changeQueryParam(param);
}
function getJsjbxxList(){
jsjbxxList({ pageSize: -1, changshang: '奥威亚',...queryParam.value }).then(res => {
let list = (res?.records) ?? [];
@ -723,7 +737,8 @@ function tableChange(pagination) {
function filterDataSource() {
let dataSource:any = [];
let list = cardList.value[currentCardIndex.value]?.child??[];
//let list = cardList.value[currentCardIndex.value]?.child??[];
let list = leftList.value??[];
let qw = queryParam.value;
console.log('->',qw, qw.nowIsClass);
@ -732,32 +747,32 @@ function filterDataSource() {
list.forEach(x => {
let isReturn = true;
if(qw.jxlName){
isReturn = x.jxlName?.includes(qw.jxlName);
if(isReturn) isReturn = x.jxlName?.includes(qw.jxlName);
}
if(qw.jsmc){
isReturn = x.jsmc?.includes(qw.jsmc);
if(isReturn) isReturn = x.jsmc?.includes(qw.jsmc);
}
if(qw.sfyx){
isReturn = x.sfyx == qw.sfyx;
if(isReturn) isReturn = x.sfyx == qw.sfyx;
}
if(qw.zbgn){
isReturn = x.zbgn == qw.zbgn;
if(isReturn) isReturn = x.zbgn == qw.zbgn;
}
if(qw.onLineClassType){
isReturn = x.onLineClassType == qw.onLineClassType;
if(isReturn) isReturn = x.onLineClassType == qw.onLineClassType;
}
if(qw.nowIsClass != undefined){
if(qw.nowIsClass == true){
isReturn = x.nowIsClass == true;
if(isReturn) isReturn = x.nowIsClass == true;
}else{
isReturn = x.nowIsClass == false || x.nowIsClass == undefined || x.nowIsClass == null;
if(isReturn) isReturn = x.nowIsClass == false || x.nowIsClass == undefined || x.nowIsClass == null;
}
}
if(qw.nextIsClass != undefined){
if(qw.nextIsClass == true){
isReturn = x.nextIsClass == true;
if(isReturn) isReturn = x.nextIsClass == true;
}else{
isReturn = x.nextIsClass == false || x.nextIsClass == undefined || x.nextIsClass == null;
if(isReturn) isReturn = x.nextIsClass == false || x.nextIsClass == undefined || x.nextIsClass == null;
}
}
if(isReturn){

View File

@ -0,0 +1,687 @@
<template>
<a-modal :visible="isShowPage" width="80%" style="top: 20px" title="详情" :ok-button-props="{ style: { display: 'none' } }" cancelText="关闭" @cancel="() => (isShowPage = false)">
<div style="width:100%;height: 100%;">
<div class="jeecg-basic-table-form-container">
<a-form @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
<a-row :gutter="24">
<a-col :lg="6">
<a-form-item label="教学楼">
<!-- <j-dict-select-tag placeholder="请选择教室" v-model:value="queryParam.xqxn" dictCode="kc_xqxn_history,title,title"/> -->
<a-input placeholder="请输入" v-model:value="queryParam.jxlName"/>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item label="教室">
<a-input placeholder="请输入" v-model:value="queryParam.jsmc"/>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item label="直播功能">
<a-select placeholder="请选择" v-model:value="queryParam.zbgn">
<a-select-option :value="undefined">请选择</a-select-option>
<a-select-option value="0"></a-select-option>
<a-select-option value="1"></a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item label="开放听课">
<a-select placeholder="请选择" v-model:value="queryParam.sfyx">
<a-select-option :value="undefined">请选择</a-select-option>
<a-select-option value="0"></a-select-option>
<a-select-option value="1"></a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item label="直播状态">
<a-select placeholder="请选择" v-model:value="queryParam.onLineClassType">
<a-select-option :value="undefined">请选择</a-select-option>
<a-select-option value="green">正常</a-select-option>
<a-select-option value="yellow">部分正常</a-select-option>
<a-select-option value="red">异常</a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item label="(即将/当前)有课">
<a-select placeholder="请选择" v-model:value="queryParam.nowIsClass">
<a-select-option :value="undefined">请选择</a-select-option>
<a-select-option :value="true"></a-select-option>
<a-select-option :value="false"></a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item label="下节有课">
<a-select placeholder="请选择" v-model:value="queryParam.nextIsClass">
<a-select-option :value="undefined">请选择</a-select-option>
<a-select-option :value="true"></a-select-option>
<a-select-option :value="false"></a-select-option>
</a-select>
</a-form-item>
</a-col>
<a-col :xl="24" :lg="24" :md="24" :sm="24">
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
<a-button type="primary" preIcon="ant-design:reload-outlined" :loading="loading" @click="batchLiveOpen" style="margin-left: 8px">批量打开直播</a-button>
<a-button type="primary" preIcon="ant-design:reload-outlined" :loading="loading" @click="batchLiveClose" style="margin-left: 8px">批量关闭直播</a-button>
<a-button type="primary" preIcon="ant-design:reload-outlined" :loading="loading" @click="batchTingkeOpen" style="margin-left: 8px">批量打开听课</a-button>
<a-button type="primary" preIcon="ant-design:reload-outlined" :loading="loading" @click="batchTingkeClose" style="margin-left: 8px">批量关闭听课</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<a-table
rowKey="jsbh"
v-show="true"
:loading="loading"
:data-source="filterComputedDataSource"
:pagination="false"
bordered
size="middle"
class="ant-table-striped"
:scroll="{ y: 650 }"
:rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
>
<a-table-column width="70px" title="序号" align="center" data-index="index">
<template #default="{ index }">
{{ index+1 }}
</template>
</a-table-column>
<a-table-column title="教学楼" data-index="jxlName"/>
<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="zbgn">
<template #default="{ text }">
{{ text == 0?'是':'否' }}
</template>
</a-table-column>
<a-table-column title="开放听课" align="center" data-index="sfyx">
<template #default="{ text }">
{{ text == 0?'是':'否' }}
</template>
</a-table-column>
<!-- 5.开放听课?? -->
<a-table-column title="直播状态" align="center" data-index="child_教师近景">
<template #default="{ record }">
<span :class="getIsOnLineClass(record)">
<i class="fas fa-circle" />
</span>
</template>
</a-table-column>
<a-table-column title="(即将/当前)有课" align="center" data-index="nowIsClass">
<template #default="{ record }">
{{ record?.nowIsClass?'是':'否' }}
</template>
</a-table-column>
<a-table-column title="下节有课" align="center" data-index="nextIsClass">
<template #default="{ record }">
{{ record?.nextIsClass?'是':'否' }}
</template>
</a-table-column>
<a-table-column title="备注" data-index="bfStatusInfo"/>
<a-table-column width="210px" title="操作" data-index="action">
<template #default="{ record }">
<a-button type="link" :disabled="record.allIsOnLine == 0" @click="ylLiveNew(record)">预览 |</a-button>
<!-- <a v-if="record.allIsOnLine == 0" :disabled="true" @click="ylLiveNew(record)" >预览 |</a>
<a v-else @click="ylLiveNew(record)" >预览 |</a> -->
<a v-if="!record?.child['教师全景']?.isOnLine" @click="changeLive(record,true)">开启直播 |</a>
<a v-else @click="changeLive(record,false)">关闭直播 |</a>
<a v-if="record.sfyx == 1" @click="changeKt(record,true)">开放听课</a>
<a v-else-if="record.sfyx == 0" @click="changeKt(record,false)">关闭听课</a>
<!-- {{ record.id }} -->
</template>
</a-table-column>
</a-table>
</div>
</a-modal>
<a-modal :visible="isShowAllLive" width="80%" style="top: 20px" title="直播" :ok-button-props="{ style: { display: 'none' } }" cancelText="关闭" @cancel="() => (isShowAllLive = false,showAllLiveRef.close())">
<showAllLive ref="showAllLiveRef" :currentItem="currentItem" :isShowAllLive="isShowAllLive"/>
</a-modal>
</template>
<script lang="ts" setup name="zhihuijiaoshiIndexPage">
import { defHttp } from '/@/utils/http/axios';
import { ref, onMounted, Ref, watch, reactive, computed, defineProps, } from 'vue';
import { nextTick } from 'vue';
import videojs from "video.js";
import { useMessage } from '/@/hooks/web/useMessage';
import showAllLive from './showAllLive.vue';
import { execAvyApi, getAvyCtrlLiveOpenOrCloseUrl } from "/@/views/site/utils/index";
import { JInput } from '/@/components/Form';
import { resumeJob, pauseJob } from '/@/views/monitor/quartz/quartz.api';
import { useRouter } from 'vue-router';
import { getSysConfig } from '/@/views/site/utils/index';
const emit = defineEmits(['reload']);
const props = defineProps({
leftList: { type: Array, default: ()=> [] },
});
const showAllLiveRef = ref();
let leftList = computed(()=>{
return props.leftList??[]
});
const selectedRowKeys :Ref<any> = ref([]);
const currentItem:Ref<any> = ref({});
const allClassNum:Ref<any> = ref(0);
const showAllLiveKey:Ref<string> = ref('showAllLiveKey');
const isShowAllLive:Ref<boolean> = ref(false);
const isShowPage:Ref<boolean> = ref(false);
const loading:Ref<boolean> = ref(false);
const { createMessage, createInfoModal, createErrorModal } = useMessage();
const route = useRouter();
const queryParam:Ref<any> = ref({});
onMounted(() => {
loadData();
});
const filterComputedDataSource:Ref<any> = ref([]);
// const filterComputedDataSource = computed(() => {
// return filterDataSource();
// });
enum Api {
list = '/jiaoshi/kcZhihuijiaoshi/list',
updateAllLive = '/jiaoshi/kcZhihuijiaoshi/updateAllLive',
changeAvyLiveApi = '/httpinterface/runAvyApiByIds',
xxhbjsjbxxList = '/xxhbjsjbxx/xxhbjsjbxx/list',
}
/**
* 列表接口
* @param params
*/
const list = (params) => defHttp.get({ url: Api.list, params });
const updateAllLive = (params) => defHttp.get({ url: Api.updateAllLive, params });
const changeAvyLiveApi = (params) => defHttp.get({ url: Api.changeAvyLiveApi, params,timeout: 9000000 });
const jsjbxxList = (params) => defHttp.get({ url: Api.xxhbjsjbxxList, params,timeout: 9000000 });
const shangXianQuartz = ref<any>({});
const labelCol = reactive({
xs: { span: 24 },
sm: { span: 8 },
});
const wrapperCol = reactive({
xs: { span: 24 },
sm: { span: 21 },
});
const ipagination = ref(
{
current: 1,
pageSize: 10,
pageSizeOptions: ['10', '20', '30'],
showTotal: (total, range) => {
return range[0] + '-' + range[1] + ' 共' + total + '条';
},
showQuickJumper: true,
showSizeChanger: true,
total: 0,
}
);
function open(param){
changeQueryParam(param);
isShowPage.value = true;
}
function close(){
isShowPage.value = false;
}
function loadData(){
// loading.value = true;
//
emit('reload');
}
function changeLoadDataLoading(loadingType){
loading.value = loadingType
}
function changeQueryParam(param){
queryParam.value = param;
nextTick(() => {
filterComputedDataSource.value = filterDataSource();
})
}
//class
function getIsOnLineClass(record){
let resClas = 'red';
// let allIsOnLine = sfYxMap.value[record?.child['']?.id]?1:0 + sfYxMap.value[record?.child['']?.id]?1:0 + sfYxMap.value[record?.child['']?.id]?1:0 + sfYxMap.value[record?.child['PPT']?.id]?1:0;
let allIsOnLine = (record?.child['教师近景']?.isOnLine?1:0) + (record?.child['教师全景']?.isOnLine?1:0) + (record?.child['学生全景']?.isOnLine?1:0) + (record?.child['PPT']?.isOnLine?1:0);
record.allIsOnLine = allIsOnLine;
let bfStatusInfo = '';
record.bfStatusInfo = bfStatusInfo;
let bfStatusInfoList:any = [];
if(!record?.child['教师近景']?.isOnLine){
bfStatusInfoList.push('教师近景没有信号');
}
if(!record?.child['教师全景']?.isOnLine){
bfStatusInfoList.push('教师全景没有信号');
}
if(!record?.child['学生全景']?.isOnLine){
bfStatusInfoList.push('学生全景没有信号');
}
if(!record?.child['PPT']?.isOnLine){
bfStatusInfoList.push('PPT没有信号');
}
if(allIsOnLine == 4){
resClas = 'green';
}else if(allIsOnLine == 0){
resClas = 'red';
}else{
resClas = 'yellow';
record.bfStatusInfo = bfStatusInfoList.join(',');
}
record.onLineClassType = resClas;
return resClas;
}
function ylLive(record){
isShowAllLive.value = true
nextTick(() => {
currentItem.value = record
})
}
function onSelectChange(selectedRowKeyList: string | number[]){
selectedRowKeys.value = selectedRowKeyList;
}
function checkSelectValue(){
return checkIsList(selectedRowKeys.value);
}
function checkIsList(list){
let r = !!(list??[]).length;
if(!r){
createErrorModal({ title: '错误', content: '请选择有效数据!' });
}
return !r;
}
function getSelectData(expression){
//
let keyMaps = {};
selectedRowKeys.value.forEach(x => keyMaps[x] = true);
let changeList = filterComputedDataSource.value.filter(x => keyMaps[x.jsbh] && expression(x));
return changeList;
}
function batchLive(type: boolean){
if(checkSelectValue()) return;
let changeList = getSelectData((x) => x?.child['教师全景']?.isOnLine == !type);
if(checkIsList(changeList)) return;
loading.value = true;
//
let ids:any = [];
let isEnable = type;
changeList.forEach(x => ids.push(x?.child['教师全景']?.id))
if(!ids) return;
changeAvyLiveApi({ ids:ids.join(','), type: isEnable?1:0 }).then(res => {
let content = '';
res.forEach(x => {
// content += x.jsmc + "-" + x.xm
content += x.jsmc
let text = '';
if(x.resText){
if(x.resText.includes('ok')){
text = (isEnable?'开启':'关闭')+'直播-操作成功!'
}else{
text = (isEnable?'开启':'关闭')+'直播-操作失败: 录播主机故障,请联系管理员。'
}
}
content += " " + text + "<br/>"
});
if(content.includes('直播-操作成功!')){
//12
setTimeout(() => {
loadData();
createInfoModal({ width:'50%', title: '结果',content })
}, 10*1000);//10
}else{
loadData();
createInfoModal({ width:'50%', title: '结果',content })
}
}).catch(e => {
console.error(e);
loading.value = false;
createInfoModal({title: '错误结果',content:e})
})
}
function batchTingke(type: boolean){
if(checkSelectValue()) return;
let changeList = getSelectData((x) => x?.sfyx == type?1:0);
if(checkIsList(changeList)) return;
//
let ids:any = [];
changeList.forEach(record => Object.values(record.child).forEach(x => {
let item:any = x;
ids.push(item.id);
}))
if(!ids) return;
updateAllLive({ ids: ids.join(','), sfyx: type?0:1}).then(res => {
loadData();
}).catch(e => {
console.error(e);
loading.value = false;
});
}
function batchLiveOpen(){
batchLive(true);
}
function batchLiveClose(){
batchLive(false);
}
function batchTingkeOpen(){
batchTingke(true);
}
function batchTingkeClose(){
batchTingke(false);
}
function ylLiveNew(record) {
let routeData = route.resolve({ path:'/site/liveRoom2',query:{ id: record.jsbh } });
window.open(routeData.href, '_blank');
}
function changeLive(record, isEnable){
console.log('createInfoModal ->',createInfoModal);
loading.value = true;
let ids:any = [];
let changeLiveEnd:any = [];
Object.values(record.child).forEach(x => {
let item:any = x;
//ID
if(item.xm == '教师近景'){
ids.push(item.id);
}
});
changeAvyLiveApi({ ids:ids.join(','), type: isEnable?1:0 }).then(res => {
console.log(`🚀 -------------------------------------------------------🚀`);
console.log(`🚀 ~ file: index.vue:295 ~ changeAvyLiveApi ~ res:`, res);
console.log(`🚀 -------------------------------------------------------🚀`);
let content = '';
res.forEach(x => {
// content += x.jsmc + "-" + x.xm
content += x.jsmc
let text = '';
if(x.resText){
if(x.resText.includes('ok')){
text = (isEnable?'开启':'关闭')+'直播-操作成功!'
}else{
text = (isEnable?'开启':'关闭')+'直播-操作失败: 录播主机故障,请联系管理员。'
}
}
content += " " + text + "<br/>"
});
if(content.includes('直播-操作成功!')){
//12
setTimeout(() => {
loadData();
createInfoModal({ width:'50%', title: '结果',content })
}, 12*1000);
}else{
loadData();
createInfoModal({ width:'50%', title: '结果',content })
}
}).catch(e => {
console.error(e);
loading.value = false;
createInfoModal({title: '错误结果',content:e})
})
}
function changeKt(record, isEnable){
loading.value = true;
let ids:any = [];
Object.values(record.child).forEach(x => {
let item:any = x;
ids.push(item.id);
});
if(!ids) return;
updateAllLive({ ids: ids.join(','), sfyx: isEnable?0:1}).then(res => {
loadData();
}).catch(e => {
console.error(e);
loading.value = false;
})
}
function tableChange(pagination) {
ipagination.value.current = pagination.current;
ipagination.value.pageSize = pagination.pageSize;
loadData();
}
function filterDataSource() {
let dataSource:any = [];
//let list = cardList.value[currentCardIndex.value]?.child??[];
//console.log('leftList.value =>',leftList.value);
let list:any = leftList.value??[];
let qw = queryParam.value;
console.log('????->',qw, qw.jxlName);
list.forEach(x => {
let isReturn = true;
if(qw.jxlName){
if(isReturn) isReturn = x.jxlName?.includes(qw.jxlName);
}
if(qw.jsmc){
if(isReturn) isReturn = x.jsmc?.includes(qw.jsmc);
}
if(qw.sfyx){
if(isReturn) isReturn = x.sfyx == qw.sfyx;
}
if(qw.zbgn){
if(isReturn) isReturn = x.zbgn == qw.zbgn;
}
if(qw.onLineClassType){
if(isReturn) isReturn = x.onLineClassType == qw.onLineClassType;
}
if(qw.nowIsClass != undefined){
if(qw.nowIsClass == true){
if(isReturn) isReturn = x.nowIsClass == true;
}else{
if(isReturn) isReturn = x.nowIsClass == false || x.nowIsClass == undefined || x.nowIsClass == null;
}
}
if(qw.nextIsClass != undefined){
if(qw.nextIsClass == true){
if(isReturn) isReturn = x.nextIsClass == true;
}else{
if(isReturn) isReturn = x.nextIsClass == false || x.nextIsClass == undefined || x.nextIsClass == null;
}
}
if(isReturn){
dataSource.push(x);
}
})
return dataSource;
}
/**
* 查询
*/
function searchQuery() {
filterComputedDataSource.value = filterDataSource();
//loadData();
}
/**
* 重置
*/
function searchReset() {
queryParam.value = {};
//
filterComputedDataSource.value = filterDataSource();
//loadData();
}
/**
* 启动
*/
async function openQuartz(){
await resumeJob({ id: shangXianQuartz.value.id }, loadData);
}
/**
* 暂停
*/
async function closeQuartz(){
await pauseJob({ id: shangXianQuartz.value.id }, loadData);
}
defineExpose({
open,
close,
changeQueryParam,
changeLoadDataLoading
});
</script>
<style lang="less" scoped>
.videoMax{
width: 25%;
}
.videoCardMain {
:deep(.ant-card-body) {
padding: 0;
}
}
/* 隐藏video 进度条 */
video::-webkit-media-controls-timeline {
display: none;
}
.green {
color: green;
}
.red {
color: red;
}
.yellow {
color: yellow;
}
// .green {
// color: #1ab394;
// }
.orange {
color: #ed9535;
}
.blue {
color: #1c84c6;
}
.jeecg-basic-table-form-container {
.ant-form {
padding: 12px 10px 6px 10px;
margin-bottom: 8px;
background-color: #fff;
border-radius: 2px;
}
.table-page-search-submitButtons {
display: block;
margin-bottom: 24px;
white-space: nowrap;
}
.query-group-cust{
width: calc(50% - 15px);
min-width: 100px !important;
}
.query-group-split-cust{
width: 30px;
display: inline-block;
text-align: center
}
}
.jeecg-basic-table-form-containera{
line-height: 24px;
background: #fff;
padding: 20px 0 0 10px;
margin-bottom: -20px;
}
.jeecg-basic-table .ant-table-wrapper .ant-table-title {
min-height: 0px !important;
padding: 0 0 8px 0 !important;
}
.active{
background-color: #36b395;
color: #ffffff;
}
.cardDiv {
:deep(.ant-divider-horizontal) {
margin: 12px 0;
}
:deep(.ant-card-head-title) {
font-weight: 700;
}
}
.numberBlob {
text-align: center;
// height: 100px;
height: 4rem;
.numSpan {
font-size: 2rem;
}
.numberName {
font-weight: 700;
}
.fs3r {
font-size: 2rem;
}
}
.handleCss{
cursor:pointer;
}
.iconel{
float: left;
width: 50px;
margin-right: 8px;
}
.iconer{
float: left;
}
.ictitle{
font-size: 15px;
color: #000000;
font-weight: 600;
text-align: left;
}
.ant-form-item{
margin-bottom: 10px;
}
</style>