2023-04-24 22:40:50 +08:00
|
|
|
|
<template>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
<div id="siteMain">
|
|
|
|
|
<div id="maxSite">
|
|
|
|
|
<a-layout>
|
|
|
|
|
<!-- 页头 -->
|
|
|
|
|
<headerPage/>
|
|
|
|
|
<!-- 主体部分 -->
|
|
|
|
|
<a-layout-content>
|
2023-10-24 09:31:25 +08:00
|
|
|
|
<div style="width:100%;height: 100%;margin-top: 1rem;" v-if="!isError">
|
2023-05-05 23:52:51 +08:00
|
|
|
|
<a-row :gutter="[16,16]">
|
2023-06-26 22:41:24 +08:00
|
|
|
|
<a-col :xs="{ span: 24 }" :sm="{ span: 19 }" :lg="{ span: 19 }">
|
2023-05-05 23:52:51 +08:00
|
|
|
|
<div>
|
|
|
|
|
<a-card class="videoCardMain" style="width:100%">
|
|
|
|
|
<template #title>
|
2023-05-18 00:27:12 +08:00
|
|
|
|
<span class="" style="border-radius: 5px;">
|
|
|
|
|
{{ ktangInfo.kcmc || ' ' }}
|
2023-05-05 23:52:51 +08:00
|
|
|
|
</span>
|
2024-02-26 19:09:19 +08:00
|
|
|
|
<span style="float: right;margin-left: 10px;background: #1c84c6;color: #fff;padding: 9px;border-radius: 5px;font-size: 16px;" @click="() => tingKeZuJiAddModal.view({ ketangbiaoid: route.query.ktId })">填写评价表</span>
|
|
|
|
|
<div style="font-size: 12px;">
|
2024-05-24 01:27:08 +08:00
|
|
|
|
{{ ktangInfo.zc || ' ' }} {{ ktangInfo.skjs || ' ' }} 学分:{{ ktangInfo.xf || ' ' }}
|
|
|
|
|
选课人数:{{ ktangInfo.xkrs || ' ' }}
|
|
|
|
|
课程性质:{{ ktangInfo.kcxz || ' ' }}
|
|
|
|
|
开课单位:{{ ktangInfo.kkdw || ' ' }}
|
|
|
|
|
节次:{{ ktangInfo.hh || ' ' }}
|
|
|
|
|
</div>
|
2024-05-25 02:20:35 +08:00
|
|
|
|
<div style="font-size: 12px;text-wrap: wrap;width: 100%;word-wrap: break-word;">
|
|
|
|
|
课程介绍:{{ ktangInfo?.zyJxdg?.kcjs }}ajajsdhasjkdahsdjkadhsajkdsahdjkdhjkhsjkcnzxcjkchfjashdjkashdasjkczxcjhcjkashdjakdhwdznxcjkndjkfhruighfuibh89yu234ue90udsdofjioejasdhasjkdahsdjkadhsajkdsahdjkdhjkhsjkcnzxcjkchfjashdjkashdasjkczxcjhcjkashdjakdhwdznxcjkndjkfhruighfuibh89yu234ue90udsdofjioeja
|
2023-05-18 00:27:12 +08:00
|
|
|
|
</div>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
</template>
|
|
|
|
|
<div style="padding: 1rem;">
|
2024-02-26 19:09:19 +08:00
|
|
|
|
<div style="font-size: 16px;float: left;">{{ mainVideoCardBoxTitle || '' }}</div>
|
2024-05-24 01:27:08 +08:00
|
|
|
|
<div style="float: right;">
|
2024-05-25 02:20:35 +08:00
|
|
|
|
AI识别出勤率:{{ calcPercentage((ktangInfo?.detectionMain?.averageNum || 0),(ktangInfo?.jiaoshirongliang?.jsrl || 0))}}
|
2024-05-24 01:27:08 +08:00
|
|
|
|
<template v-if="ktangInfo?.jiaoshirongliang?.jsrl">本教室容量:{{ktangInfo?.jiaoshirongliang?.jsrl}}座位</template>
|
|
|
|
|
</div>
|
2023-06-28 23:05:19 +08:00
|
|
|
|
<bVideo ref="mainVideo" videoId="mainVideo" :videoOption="{ autoplay: true }" @load-end="mainVideoLoadEnd"/>
|
2024-05-24 01:27:08 +08:00
|
|
|
|
<div class="jxDiv">
|
|
|
|
|
<a-space>
|
|
|
|
|
<div v-if="ktangInfo?.zyJxdg?.filePath">
|
|
|
|
|
教学大纲:
|
2024-05-25 02:20:35 +08:00
|
|
|
|
<a-button type="primary" size="small" style="margin-left:10px;" @click="openPdf(ktangInfo?.zyJxdg?.pdfPath)">预览</a-button>
|
2024-05-24 01:27:08 +08:00
|
|
|
|
<a-button type="primary" size="small" style="margin-left:10px;" @click="downloadFile(ktangInfo?.zyJxdg?.filePath)">下载</a-button>
|
|
|
|
|
</div>
|
|
|
|
|
<div v-if="ktangInfo?.zyJxdg?.filePath">
|
|
|
|
|
教学日历:
|
2024-05-25 02:20:35 +08:00
|
|
|
|
<a-button type="primary" size="small" style="margin-left:10px;" @click="openPdf(ktangInfo?.zyJxdg?.jxrlPdfPath)">预览</a-button>
|
2024-05-24 01:27:08 +08:00
|
|
|
|
<a-button type="primary" size="small" style="margin-left:10px;" @click="downloadFile(ktangInfo?.zyJxdg?.jxrlFilePath)">下载</a-button>
|
|
|
|
|
</div>
|
|
|
|
|
</a-space>
|
|
|
|
|
</div>
|
2023-06-28 22:41:50 +08:00
|
|
|
|
<div style="width: 100%;margin-top:10px;">
|
2023-05-19 23:36:52 +08:00
|
|
|
|
<a-textarea style="width: calc(100% - 7rem);height:120px;float: left;" v-model:value="model.notes" placeholder="您可以填写听课笔记"></a-textarea>
|
|
|
|
|
<div style="width: 7rem;height: 100%;float: right;">
|
|
|
|
|
<a-button type="primary" style="width: 7rem;height: 100%;" @click="openAllSuiBi">查看听课笔记</a-button>
|
2023-08-13 12:20:45 +08:00
|
|
|
|
<a-button type="primary" style="width: 7rem;height: 100%;margin-top: 10px;" @click="saveSuibi">保存听课笔记</a-button>
|
|
|
|
|
<a-button type="primary" style="width: 7rem;height: 100%;margin-top: 10px;" @click="handleBaocuo(ktangInfo)">报错</a-button>
|
2023-05-19 23:36:52 +08:00
|
|
|
|
</div>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a-card>
|
|
|
|
|
</div>
|
|
|
|
|
</a-col>
|
2023-06-26 22:41:24 +08:00
|
|
|
|
<a-col :xs="{ span: 24 }" :sm="{ span: 5 }" :lg="{ span: 5 }">
|
2023-05-05 23:52:51 +08:00
|
|
|
|
<a-row>
|
2023-05-07 11:37:41 +08:00
|
|
|
|
<a-col :span="24" v-for="(item,index) of tableData" style="text-align: center;" :key="'col-'+index">
|
2023-05-05 23:52:51 +08:00
|
|
|
|
<a-card>
|
|
|
|
|
<div>
|
|
|
|
|
<div style="margin-bottom: .5rem;">
|
|
|
|
|
<span class="smallTxt miniButton" :class="item.id == curentPlayerVideo.id?'activte':''" @click="changeLive(item)">
|
|
|
|
|
<i class="fa-solid fa-right-left"></i>{{ item?.xm }}
|
|
|
|
|
</span>
|
|
|
|
|
<span class="smallTxt miniButton miniButtonRight" v-show="!item.isShow" @click="(item.isShow = true,initVideo('other-'+item.id))"><i class="fa-solid fa-film"></i>显示缩略窗口</span>
|
2023-05-06 00:00:19 +08:00
|
|
|
|
<span class="smallTxt miniButton miniButtonRight" v-show="item.isShow" @click="item.isShow = false"><i class="fa-solid fa-film"></i>隐藏缩略窗口</span>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div style="height: 2rem;"> </div>
|
|
|
|
|
<div v-show="item.isShow" :key="'other-div-'+index">
|
2023-05-15 16:06:07 +08:00
|
|
|
|
<!-- <bVideo :key="'other-'+index" :ref="el=> bVideoRefs['other-'+item.id] = el" :videoId="'other-'+item.id" :src="'http://127.0.0.1/hls/a.m3u8'" :videoOption="{ autoplay: true, controls: false }" @load-end="loadEnd"/> -->
|
|
|
|
|
<bVideo :key="'other-'+index" :ref="el=> bVideoRefs['other-'+item.id] = el" :videoId="'other-'+item.id" :src="item.pullUrl" :videoOption="{ autoplay: true, controls: false }" @load-end="loadEnd"/>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</a-card>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
2023-04-24 22:40:50 +08:00
|
|
|
|
</div>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
<div v-else style="height: 100%;display: flex;justify-content: center;align-items: center;">
|
|
|
|
|
<a-empty>
|
|
|
|
|
<template #description>
|
2023-10-19 22:50:01 +08:00
|
|
|
|
<span v-if="!playStatus">
|
2023-05-05 23:52:51 +08:00
|
|
|
|
没有找到直播间
|
|
|
|
|
</span>
|
2023-10-19 22:50:01 +08:00
|
|
|
|
<span v-if="playStatus">
|
2023-10-22 01:57:24 +08:00
|
|
|
|
{{ getSysConfig()?.videoPlayErrTitle || '直播间暂无内容' }}
|
2023-10-19 22:50:01 +08:00
|
|
|
|
</span>
|
2023-05-05 23:52:51 +08:00
|
|
|
|
</template>
|
|
|
|
|
<!-- <a-button type="primary" @="">关闭</a-button> -->
|
|
|
|
|
</a-empty>
|
|
|
|
|
</div>
|
|
|
|
|
</a-layout-content>
|
|
|
|
|
</a-layout>
|
|
|
|
|
</div>
|
2023-04-24 22:40:50 +08:00
|
|
|
|
</div>
|
2023-10-19 22:50:01 +08:00
|
|
|
|
<KcErrorreportIndexModal ref="kcErrorreportIndexModal"></KcErrorreportIndexModal>
|
2023-05-04 23:50:32 +08:00
|
|
|
|
<addModalPage ref="tingKeZuJiAddModal"/>
|
2023-05-19 23:36:52 +08:00
|
|
|
|
<a-modal title="查看听课笔记" width="800px" :visible="tkbjVisible" :okButtonProps="{ class: { 'jee-hidden': true } }" @cancel="() => tkbjVisible = false" cancelText="关闭">
|
|
|
|
|
<div style="white-space:normal; word-break:break-all;overflow:hidden;">
|
|
|
|
|
<a-table tableLayout="fixed" :dataSource="suibiList" :scroll="{ x: true }" :pagination="false">
|
|
|
|
|
<a-table-column width="160px" title="填写时间" key="createTime" data-index="createTime" />
|
|
|
|
|
<a-table-column title="内容" key="notes" data-index="notes" />
|
|
|
|
|
</a-table>
|
|
|
|
|
</div>
|
|
|
|
|
</a-modal>
|
|
|
|
|
|
2023-04-24 22:40:50 +08:00
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts" setup name="zhihuijiaoshiIndexPage">
|
2023-05-04 23:50:32 +08:00
|
|
|
|
|
2023-04-24 22:40:50 +08:00
|
|
|
|
import { defHttp } from '/@/utils/http/axios';
|
2023-05-04 23:50:32 +08:00
|
|
|
|
import { ref, reactive, onMounted } from 'vue';
|
2023-05-05 23:52:51 +08:00
|
|
|
|
import headerPage from '/@/views/site/common/header.vue';
|
2023-04-24 22:40:50 +08:00
|
|
|
|
import bVideo from '/@/views/site/common/video/videojs/video.vue';
|
2023-05-04 23:50:32 +08:00
|
|
|
|
import addModalPage from '/@/views/site/tingKeZuJi/components/addModal.vue';
|
2023-04-24 22:40:50 +08:00
|
|
|
|
import { nextTick } from 'vue';
|
|
|
|
|
import { useRoute } from 'vue-router'
|
2023-05-04 23:50:32 +08:00
|
|
|
|
import { getUserId } from '/@/views/site/utils/index';
|
2023-08-13 12:20:45 +08:00
|
|
|
|
import KcErrorreportIndexModal from '/@/views/kc/kcErrorreport/components/KcErrorreportIndexZbModal.vue'
|
2023-10-19 22:50:01 +08:00
|
|
|
|
import videojs from "video.js";
|
2023-10-22 01:57:24 +08:00
|
|
|
|
import { getSysConfig } from '/@/views/site/utils/index';
|
2023-10-27 00:49:17 +08:00
|
|
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
2024-05-24 01:27:08 +08:00
|
|
|
|
import { baseApiUrl, getFileAccessHttpUrl } from '/@/utils/common/compUtils';
|
2023-10-27 00:49:17 +08:00
|
|
|
|
|
|
|
|
|
const { createMessage, createInfoModal, createErrorModal } = useMessage();
|
2023-04-24 22:40:50 +08:00
|
|
|
|
|
2023-05-07 11:37:41 +08:00
|
|
|
|
const mainVideo = ref<any>();
|
|
|
|
|
const bVideoRefs = ref<any>([]);
|
2023-08-13 12:20:45 +08:00
|
|
|
|
const kcErrorreportIndexModal = ref();
|
2023-04-24 22:40:50 +08:00
|
|
|
|
|
2023-05-07 11:37:41 +08:00
|
|
|
|
const tingKeZuJiAddModal = ref<any>({});
|
|
|
|
|
const curentPlayerVideo = ref<any>({});
|
|
|
|
|
const kcCardBoxTitle = ref<any>('');
|
2023-05-18 00:27:12 +08:00
|
|
|
|
const ktangInfo = ref<any>({});
|
2024-05-24 01:27:08 +08:00
|
|
|
|
// const jxdgInfo = ref<any>({});
|
2023-05-07 11:37:41 +08:00
|
|
|
|
const mainVideoCardBoxTitle = ref<any>('');
|
2023-04-24 22:40:50 +08:00
|
|
|
|
const tableData = ref<Recordable>([])
|
2023-05-19 23:36:52 +08:00
|
|
|
|
const suibiList = ref<Recordable>([])
|
2023-04-24 22:40:50 +08:00
|
|
|
|
const isError = ref(false);
|
2023-05-19 23:36:52 +08:00
|
|
|
|
const tkbjVisible = ref(false);
|
2023-10-19 22:50:01 +08:00
|
|
|
|
const playStatus = ref(false);
|
2023-04-24 22:40:50 +08:00
|
|
|
|
|
2023-05-04 23:50:32 +08:00
|
|
|
|
const model = reactive<Record<string, any>>({ notes:'' });
|
|
|
|
|
|
2023-04-24 22:40:50 +08:00
|
|
|
|
const route = useRoute();
|
|
|
|
|
|
2023-05-04 23:50:32 +08:00
|
|
|
|
enum Api {
|
|
|
|
|
list = '/jiaoshi/kcZhihuijiaoshi/list',
|
|
|
|
|
querySuibi = '/kc/kcKetangSuibi/list',
|
2023-05-05 23:52:51 +08:00
|
|
|
|
addSuibi = '/kc/kcKetangSuibi/add',
|
2023-05-04 23:50:32 +08:00
|
|
|
|
// editSuibi = '/kc/kcKetangSuibi/edit'
|
2024-05-24 01:27:08 +08:00
|
|
|
|
getKtangInfo = '/ktgl/kcKetangbiao/queryAllDataById',
|
2023-10-27 00:49:17 +08:00
|
|
|
|
savePlayLog = '/jiaoshi/kcZhihuijiaoshiAccessLog/savePlayLog',
|
|
|
|
|
changeAvyLiveByJsbhsApi = '/httpinterface/runAvyApiByJsbhs',
|
2023-05-04 23:50:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 列表接口
|
|
|
|
|
* @param params
|
|
|
|
|
*/
|
|
|
|
|
const list = (params) => defHttp.get({ url: Api.list, params });
|
|
|
|
|
const querySuibi = (params) => defHttp.get({ url: Api.querySuibi, params });
|
|
|
|
|
const addSuibi = (params) => defHttp.post({ url: Api.addSuibi, params });
|
2023-05-05 23:52:51 +08:00
|
|
|
|
const getKtangInfo = (params) => defHttp.get({ url: Api.getKtangInfo, params });
|
2023-10-19 01:05:12 +08:00
|
|
|
|
const savePlayLog = (params) => defHttp.post({ url: Api.savePlayLog, params, }, { isTransformResponse: false });
|
2023-10-27 00:49:17 +08:00
|
|
|
|
const changeAvyLiveByJsbhsApi = (params) => defHttp.get({ url: Api.changeAvyLiveByJsbhsApi, params,timeout: 9000000 });
|
2023-05-04 23:50:32 +08:00
|
|
|
|
// const editSuibi = (params) => defHttp.post({ url: Api.editSuibi, params });
|
|
|
|
|
|
2023-04-24 22:40:50 +08:00
|
|
|
|
onMounted(() => {
|
|
|
|
|
if(route.query.id){
|
2023-05-04 23:50:32 +08:00
|
|
|
|
model.notes = '';
|
2023-05-07 11:37:41 +08:00
|
|
|
|
//按教师编号加载数据,屏蔽掉无效的,不分页
|
2023-04-24 22:40:50 +08:00
|
|
|
|
list({ pageSize: -1, sfyx: '0', jsbh: route.query.id }).then(res => {
|
|
|
|
|
let list = (res?.records) ?? [];
|
|
|
|
|
tableData.value = list;
|
2023-05-05 23:52:51 +08:00
|
|
|
|
tableData.value.forEach(x => x.isShow = true);//默认展开
|
2023-10-27 00:49:17 +08:00
|
|
|
|
let zjData = tableData.value.find(x => x.xm == '教师近景') || {};
|
2023-04-24 22:40:50 +08:00
|
|
|
|
nextTick(() => {
|
2023-10-27 00:49:17 +08:00
|
|
|
|
if(zjData){
|
|
|
|
|
changeLive(zjData);
|
2023-10-19 01:05:12 +08:00
|
|
|
|
}
|
2023-10-27 00:49:17 +08:00
|
|
|
|
savePlayLogFn(zjData);
|
|
|
|
|
calcPlayStatus(zjData);
|
2023-05-05 23:52:51 +08:00
|
|
|
|
tableData.value.forEach(x => x.isShow = false);//关闭
|
2023-04-24 22:40:50 +08:00
|
|
|
|
})
|
|
|
|
|
});
|
2023-05-04 23:50:32 +08:00
|
|
|
|
getSuibi();
|
2023-05-05 23:52:51 +08:00
|
|
|
|
getKcxx();
|
2023-10-19 01:05:12 +08:00
|
|
|
|
//记录播放日志
|
2023-08-28 21:45:14 +08:00
|
|
|
|
isError.value = false;
|
2023-10-24 09:31:25 +08:00
|
|
|
|
}else{
|
|
|
|
|
isError.value = true;
|
2023-04-24 22:40:50 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2023-08-13 12:20:45 +08:00
|
|
|
|
function handleBaocuo(item) {
|
|
|
|
|
kcErrorreportIndexModal.value.disableSubmit = false;
|
|
|
|
|
kcErrorreportIndexModal.value.add(item);
|
|
|
|
|
}
|
2023-05-05 23:52:51 +08:00
|
|
|
|
/**
|
|
|
|
|
* 子页加载完成后回调
|
|
|
|
|
* @param player
|
|
|
|
|
*/
|
|
|
|
|
function loadEnd(player){
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
player.on('play',() => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
player.pause();
|
2023-10-27 00:49:17 +08:00
|
|
|
|
},2000);
|
2023-05-05 23:52:51 +08:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function initVideo(key){
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
let ref = bVideoRefs.value[key];
|
|
|
|
|
ref.init();
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-04 23:50:32 +08:00
|
|
|
|
function changeLive(item:any){
|
2023-05-15 16:06:07 +08:00
|
|
|
|
let url = item.pullUrl
|
2023-05-07 11:37:41 +08:00
|
|
|
|
let mainVideo = document.querySelector<any>('#mainVideo');
|
2023-05-15 16:06:07 +08:00
|
|
|
|
// mainVideo?.player?.src([{ type:'application/x-mpegURL',src: 'http://127.0.0.1/live_hls/a.m3u8' }])
|
|
|
|
|
mainVideo?.player?.src([{ type:'application/x-mpegURL',src: url }])
|
2023-06-28 23:05:19 +08:00
|
|
|
|
|
2023-12-08 21:27:46 +08:00
|
|
|
|
mainVideoCardBoxTitle.value = item.jsmc+" "+item.xm;
|
2023-05-15 14:08:47 +08:00
|
|
|
|
console.log(`🚀 --------------------------------------------------------------------------------🚀`);
|
|
|
|
|
console.log(`🚀 ~ file: viewPage.vue:164 ~ changeLive ~ mainVideo?.player:`, mainVideo?.player);
|
|
|
|
|
console.log(`🚀 --------------------------------------------------------------------------------🚀`);
|
2023-10-24 09:31:25 +08:00
|
|
|
|
// let buttonEl = mainVideo?.player.el().querySelector('.changeDefinitionBtn');
|
2023-05-16 17:02:33 +08:00
|
|
|
|
//赋值原URL
|
2023-10-24 09:31:25 +08:00
|
|
|
|
// if(buttonEl){
|
|
|
|
|
// buttonEl.dataset.url = url;
|
|
|
|
|
// }
|
2023-05-05 23:52:51 +08:00
|
|
|
|
|
|
|
|
|
curentPlayerVideo.value = item;
|
2023-10-24 09:31:25 +08:00
|
|
|
|
// nextTick(() => {
|
|
|
|
|
//增加自动播放功能
|
|
|
|
|
//mainVideo?.player?.play();
|
|
|
|
|
// })
|
2023-06-28 23:05:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function mainVideoLoadEnd(player){
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
player.muted(false);
|
|
|
|
|
//player.play();
|
|
|
|
|
},50);
|
|
|
|
|
},50);
|
2023-05-05 23:52:51 +08:00
|
|
|
|
|
2023-04-24 22:40:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-10-27 00:49:17 +08:00
|
|
|
|
function openLive(item: any){
|
|
|
|
|
changeAvyLiveByJsbhsApi({ jsbhs:item.jsbh, type: 1 }).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 = '播放失败,开启直播间成功,请稍后再试'
|
|
|
|
|
}else{
|
|
|
|
|
text = '播放失败,开启直播间失败,请联系管理员。'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
content += " " + text + "<br/>"
|
|
|
|
|
});
|
|
|
|
|
// if(content.includes('开启直播间成功')){
|
|
|
|
|
// //延迟12秒
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
// createInfoModal({ width:'50%', title: '结果',content })
|
|
|
|
|
// }, 12*1000);
|
|
|
|
|
// }else{
|
|
|
|
|
createInfoModal({ width:'50%', title: '结果',content })
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
}).catch(e => {
|
|
|
|
|
console.error(e);
|
|
|
|
|
//loading.value = false;
|
|
|
|
|
//createInfoModal({title: '错误结果',content:e})
|
|
|
|
|
})
|
|
|
|
|
}
|
2023-05-15 14:08:47 +08:00
|
|
|
|
|
|
|
|
|
|
2023-05-04 23:50:32 +08:00
|
|
|
|
function getSuibi(){
|
2023-05-05 23:52:51 +08:00
|
|
|
|
//查询随笔
|
2023-05-04 23:50:32 +08:00
|
|
|
|
let param = {
|
|
|
|
|
userId: getUserId(),
|
|
|
|
|
ketangbiaoId: route.query.ktId,
|
|
|
|
|
column: 'createTime',
|
|
|
|
|
order: 'desc',
|
|
|
|
|
};
|
|
|
|
|
querySuibi(param).then(res => {
|
|
|
|
|
Object.assign(model, (res.records??[{}])[0]);
|
|
|
|
|
// model = (res.records??[{}])[0];
|
2023-04-24 22:40:50 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-05 23:52:51 +08:00
|
|
|
|
function getKcxx(){
|
|
|
|
|
//查询课程信息
|
|
|
|
|
//route.query.ktId
|
|
|
|
|
let param = {
|
|
|
|
|
id: route.query.ktId
|
|
|
|
|
}
|
|
|
|
|
getKtangInfo(param).then(res => {
|
2023-05-18 00:27:12 +08:00
|
|
|
|
console.log(res);
|
|
|
|
|
ktangInfo.value = res;
|
2023-05-05 23:52:51 +08:00
|
|
|
|
kcCardBoxTitle.value = res.kcmc;
|
2024-05-24 01:27:08 +08:00
|
|
|
|
|
|
|
|
|
// defHttp.get({ url: '/zyJxdg/zyJxdg/getKcjsJxdg', params: { rwbh: res.rwbh,xqxn: res.xnxq } }).then((res) => {
|
|
|
|
|
// if(res){
|
|
|
|
|
// jxdgInfo.value = res;
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
|
2023-05-05 23:52:51 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
2023-10-19 01:05:12 +08:00
|
|
|
|
function savePlayLogFn(item){
|
|
|
|
|
savePlayLog({ playUrl: item.pullUrl, jxlId: item.jxlId, jxlName: item.jxlName, jsbh: route.query.id, jsmc: item.jsmc, ketangbiaoId: route.query.ktId,ketangbiaoName: ktangInfo.value.kcmc })
|
|
|
|
|
}
|
2023-05-05 23:52:51 +08:00
|
|
|
|
|
2023-10-19 22:50:01 +08:00
|
|
|
|
//计算播放状态
|
|
|
|
|
function calcPlayStatus(item){
|
2023-10-27 00:49:17 +08:00
|
|
|
|
if(item.pullUrl){
|
|
|
|
|
videojs.xhr.get(item.pullUrl,(err, resp, body) => {
|
|
|
|
|
if(err){
|
|
|
|
|
playStatus.value = false;
|
|
|
|
|
isError.value = true;
|
|
|
|
|
openLive(item);
|
|
|
|
|
}else{
|
|
|
|
|
playStatus.value = true;
|
|
|
|
|
isError.value = false;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}else {
|
|
|
|
|
console.log(1111111);
|
|
|
|
|
|
|
|
|
|
playStatus.value = true;
|
|
|
|
|
isError.value = true;
|
|
|
|
|
}
|
2023-10-19 22:50:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-04 23:50:32 +08:00
|
|
|
|
function saveSuibi(){
|
|
|
|
|
//addSuibi editSuibi
|
|
|
|
|
// if(model.value.id){
|
|
|
|
|
// editSuibi({...model.value, })
|
|
|
|
|
// }else{
|
|
|
|
|
addSuibi({ notes: model.notes, userId: getUserId(), ketangbiaoId: route.query.ktId })
|
|
|
|
|
// }
|
2023-04-24 22:40:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-19 23:36:52 +08:00
|
|
|
|
function openAllSuiBi(){
|
|
|
|
|
//打开弹窗
|
|
|
|
|
tkbjVisible.value = true;
|
|
|
|
|
//查询随笔
|
|
|
|
|
let param = {
|
|
|
|
|
userId: getUserId(),
|
|
|
|
|
ketangbiaoId: route.query.ktId,
|
|
|
|
|
column: 'createTime',
|
|
|
|
|
order: 'desc',
|
2023-06-07 00:02:49 +08:00
|
|
|
|
pageSize: '-1',
|
2023-05-19 23:36:52 +08:00
|
|
|
|
};
|
|
|
|
|
querySuibi(param).then(res => {
|
|
|
|
|
// model = (res.records??[{}])[0];
|
|
|
|
|
suibiList.value = res.records??[]
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
//关闭等待
|
|
|
|
|
});
|
2024-05-24 01:27:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function calcPercentage(averageNum, zrs) {
|
|
|
|
|
if(averageNum === 0 || zrs === 0){
|
|
|
|
|
return '0%';
|
|
|
|
|
}else{
|
2024-05-27 14:45:05 +08:00
|
|
|
|
return (averageNum / zrs * 100).toFixed(2) + '%';
|
2024-05-24 01:27:08 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openPdf(miniUrl) {
|
|
|
|
|
let url2 = getFileAccessHttpUrl(miniUrl)
|
|
|
|
|
let url = baseApiUrl+"/generic/web/viewer.html?file="+encodeURIComponent(url2);
|
|
|
|
|
window.open(url,"_blank");
|
|
|
|
|
}
|
2023-05-19 23:36:52 +08:00
|
|
|
|
|
2024-05-24 01:27:08 +08:00
|
|
|
|
function downloadFile(miniUrl) {
|
|
|
|
|
let url = getFileAccessHttpUrl(miniUrl);
|
|
|
|
|
window.open(url,"_blank");
|
2023-05-19 23:36:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-05-24 01:27:08 +08:00
|
|
|
|
|
|
|
|
|
|
2023-04-24 22:40:50 +08:00
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
2024-05-24 01:27:08 +08:00
|
|
|
|
.jxDiv {
|
|
|
|
|
padding-top: .5rem;
|
|
|
|
|
}
|
2023-05-05 23:52:51 +08:00
|
|
|
|
#siteMain {
|
|
|
|
|
// font-size: ;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: #f3f3f4;
|
|
|
|
|
#maxSite {
|
|
|
|
|
//最大宽度
|
|
|
|
|
max-width: 1170px;
|
|
|
|
|
//居中
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
.rowGutter{
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ant-layout-header {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #1ab394;
|
|
|
|
|
}
|
|
|
|
|
.ant-layout-footer {
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
}
|
|
|
|
|
.ant-layout-sider {
|
|
|
|
|
color: #fff;
|
|
|
|
|
line-height: 120px;
|
|
|
|
|
background: #3ba0e9;
|
|
|
|
|
}
|
|
|
|
|
.ant-layout-content {
|
|
|
|
|
min-height: 120px;
|
|
|
|
|
color: #000;
|
|
|
|
|
/*line-height: 120px;*/
|
|
|
|
|
background: #f3f3f4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/**暗黑模式特殊配色*/
|
|
|
|
|
[data-theme='dark'] #siteMain #maxSite {
|
|
|
|
|
.ant-layout-header, .ant-layout-footer {
|
|
|
|
|
background: #6aa0c7;
|
|
|
|
|
}
|
|
|
|
|
.ant-layout-content {
|
|
|
|
|
background: #107bcb;
|
|
|
|
|
}
|
|
|
|
|
.ant-layout-sider {
|
|
|
|
|
background: #3499ec;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-24 22:40:50 +08:00
|
|
|
|
.videoMax{
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
.videoCardMain {
|
|
|
|
|
:deep(.ant-card-body) {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* 隐藏video 进度条 */
|
|
|
|
|
video::-webkit-media-controls-timeline {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2023-05-05 23:52:51 +08:00
|
|
|
|
.smallTxt {
|
|
|
|
|
font-size: .8rem;
|
|
|
|
|
}
|
|
|
|
|
.activte {
|
|
|
|
|
background: #1ab394;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
.miniButton {
|
|
|
|
|
float: left;
|
|
|
|
|
padding: 0.3rem;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
}
|
|
|
|
|
.miniButtonRight {
|
|
|
|
|
float: right
|
2023-05-04 23:50:32 +08:00
|
|
|
|
}
|
2023-04-24 22:40:50 +08:00
|
|
|
|
</style>
|