202 lines
7.0 KiB
Vue
202 lines
7.0 KiB
Vue
|
<template>
|
||
|
<a-row style="margin-top:20px;">
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
||
|
<a-form-item label="" style="padding: 10px;">
|
||
|
<a-date-picker :showTime="false" valueFormat="YYYY-MM-DD" :placeholder="'请选择结束时间'" style="width:100%;" v-model:value="queryParam.ywTime"></a-date-picker>
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
||
|
<a-form-item label="" style="padding: 10px;">
|
||
|
<JDictSelectTag placeholder="请选择院系" v-model:value="queryParam.kkdw" :dictCode="`kc_kkdw_view,kkdw,kkdw`" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
||
|
<a-form-item label="" style="padding: 10px;">
|
||
|
<JDictSelectTag placeholder="请选择节次" v-model:value="queryParam.jieci" :dictCode="`kc_jieci_view,jieciname,jieci`" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
||
|
<a-form-item label="" style="padding: 10px;">
|
||
|
<JDictSelectTag placeholder="请选择课程性质" v-model:value="queryParam.kcxz" dictCode="kcxz" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 3 }">
|
||
|
<a-form-item label="" style="padding: 10px;">
|
||
|
<JDictSelectTag placeholder="请选择教学楼" v-model:value="queryParam.jzwh" :dictCode="`xxhbjxljbxx,jzwmc,jzwh`" />
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 5 }">
|
||
|
<a-form-item label="" style="padding: 10px;">
|
||
|
<a-input-search placeholder="请输入课程或教师名称" v-model:value="queryParam.ywmc" enter-button="查询" @search="loadData(1)"></a-input-search>
|
||
|
</a-form-item>
|
||
|
</a-col>
|
||
|
</a-row>
|
||
|
<a-row class="rowGutter" :gutter="[16, 16]">
|
||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 6 }" v-for="(item, index) in listData" :key="index" style="margin-bottom: 0;">
|
||
|
<itemPage :data="item" @to-live-page="toLivePage" @funpingjia="funpingjia"></itemPage>
|
||
|
</a-col>
|
||
|
<a-col :span="25" style="line-height: 50px;">
|
||
|
<div v-show="1 == pageNo && current>0">
|
||
|
<div style="text-align: center;"><a @click="funMore">更多...</a></div>
|
||
|
</div>
|
||
|
<div v-show="current==0">
|
||
|
<div style="text-align: center;"><a @click="funMore">暂无课堂</a></div>
|
||
|
</div>
|
||
|
<div v-show="1 < pageNo && pageNo < current">
|
||
|
<div style="text-align: center;"><a @click="funMore">更多...</a></div>
|
||
|
<div style="text-align: right;margin-top: -51px;"><a @click="funShouqi">收起</a></div>
|
||
|
</div>
|
||
|
<!-- <div v-show="current == pageNo">
|
||
|
<div style="text-align: center;"><a @click="funShouqi">收起</a></div>
|
||
|
</div> -->
|
||
|
</a-col>
|
||
|
</a-row>
|
||
|
<!-- 报错列表 -->
|
||
|
<KcErrorreportIndexModal ref="kcErrorreportIndexModal"></KcErrorreportIndexModal>
|
||
|
<addModalPage ref="tingKeZuJiAddModal"/>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { ref,watch,reactive,defineExpose,onMounted } from 'vue';
|
||
|
import { defHttp } from '/@/utils/http/axios';
|
||
|
import { useMessage } from '/@/hooks/web/useMessage';
|
||
|
import KcErrorreportIndexModal from '/@/views/kc/kcErrorreport/components/KcErrorreportIndexModal.vue'
|
||
|
import { addTingKeLog, getUserId } from '/@/views/site/utils/index';
|
||
|
import addModalPage from '/@/views/site/tingKeZuJi/components/addModal.vue';
|
||
|
import itemPage from './itemPage.vue';
|
||
|
import { useRouter } from 'vue-router'
|
||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||
|
|
||
|
//用户相关
|
||
|
import { useUserStore } from '/@/store/modules/user';
|
||
|
const userStore = useUserStore();
|
||
|
const kcErrorreportIndexModal = ref();
|
||
|
const tingKeZuJiAddModal = ref();
|
||
|
const route = useRouter();
|
||
|
|
||
|
|
||
|
let pageNo = 1
|
||
|
let current = 0
|
||
|
const emit = defineEmits(['setTotal']);
|
||
|
|
||
|
const { createMessage } = useMessage();
|
||
|
const confirmLoading = ref<boolean>(false);
|
||
|
let listData = ref<any>([]);
|
||
|
let listType = ref<any>(String);
|
||
|
const list = (params) => defHttp.get({ url: '/ktgl/kcKetangbiao/getKclblist', params });
|
||
|
const jclist = (queryParam) => defHttp.get({ url: '/kcJieci/kcJieci/getIndexJcList', params:queryParam });
|
||
|
const queryParam = ref<any>({});
|
||
|
|
||
|
|
||
|
//进入就加载
|
||
|
onMounted(() => {
|
||
|
jclist(queryParam.value).then(res=>{
|
||
|
var list = res
|
||
|
queryParam.value.ywTime = list[0].kssj
|
||
|
// queryParam.value.jieci = list[1].jieci
|
||
|
loadData(1)
|
||
|
})
|
||
|
});
|
||
|
|
||
|
//查询数据
|
||
|
function loadData(num?) {
|
||
|
if(num == 1){
|
||
|
pageNo = 1
|
||
|
listData.value = [];
|
||
|
}
|
||
|
queryParam.value.pageSize = '4'
|
||
|
queryParam.value.pageNo = pageNo
|
||
|
queryParam.value.sfyzhjs = '1'
|
||
|
// queryParam.value.hh = queryParam.value.jieci+","+queryParam.value.jieci.split("、").join(',')
|
||
|
if(queryParam.value.jieci){
|
||
|
queryParam.value.hh = queryParam.value.jieci+","+queryParam.value.jieci.split("、").join(',')
|
||
|
}
|
||
|
queryParam.value.skrq = queryParam.value.ywTime
|
||
|
queryParam.value.userid = getUserId()
|
||
|
queryParam.value.skxs = 1
|
||
|
queryParam.value.type = 1
|
||
|
console.log(`🚀 ~ file: index.vue:112 ~ rkbLoadData ~ newRow:`, queryParam)
|
||
|
|
||
|
|
||
|
if(queryParam.value.hh!=","){
|
||
|
list(queryParam.value).then(res => {
|
||
|
// console.log(`🚀 ~ file: index.vue:104 ~ list ~ res:`, res)
|
||
|
listData.value.push(...res.records)
|
||
|
current = res.pages
|
||
|
// listData.value = res.records;
|
||
|
// console.log(`🚀 ~ file: kclbList.vue:113 ~ list ~ listData.value:`, listData.value)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
function funpingjia(record){
|
||
|
var item = {ketangbiaoid:record.id}
|
||
|
tingKeZuJiAddModal.value.view(item)
|
||
|
}
|
||
|
/**
|
||
|
* 报错事件
|
||
|
*/
|
||
|
function handleBaocuo(item) {
|
||
|
kcErrorreportIndexModal.value.disableSubmit = false;
|
||
|
kcErrorreportIndexModal.value.add(item);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 公开课收起
|
||
|
*/
|
||
|
function funShouqi(){
|
||
|
listData.value = []
|
||
|
pageNo = 1
|
||
|
loadData()
|
||
|
}
|
||
|
/**
|
||
|
* 加载更多公开课
|
||
|
*/
|
||
|
function funMore(){
|
||
|
console.log(`🚀 ~ file: index.vue:83 ~ funMore ~ current>pageNo:`, current,pageNo)
|
||
|
if(current>pageNo){
|
||
|
pageNo ++;
|
||
|
loadData()
|
||
|
}else{
|
||
|
createMessage.error("没有更多数据了!");
|
||
|
}
|
||
|
}
|
||
|
/**
|
||
|
* 听课按钮
|
||
|
* @param item
|
||
|
*/
|
||
|
function toLivePage(item){
|
||
|
// route.push({ path:'/site/liveRoom',query:{ id: item.jsbh } })
|
||
|
//添加听课日志
|
||
|
addTingKeLog(getUserId(),item.id);
|
||
|
let routeData = route.resolve({ path:'/site/liveRoom',query:{ id: item.jsbh, ktId: item.id } });
|
||
|
window.open(routeData.href, '_blank');
|
||
|
};
|
||
|
|
||
|
enum Api {
|
||
|
list = '/kcYuyue/kcYuyue/list',
|
||
|
save='/kcYuyue/kcYuyue/add',
|
||
|
edit='/kcYuyue/kcYuyue/edit',
|
||
|
deleteOne = '/kcYuyue/kcYuyue/delete',
|
||
|
deleteBatch = '/kcYuyue/kcYuyue/deleteBatch',
|
||
|
importExcel = '/kcYuyue/kcYuyue/importExcel',
|
||
|
exportXls = '/kcYuyue/kcYuyue/exportXls',
|
||
|
}
|
||
|
|
||
|
defineExpose({
|
||
|
loadData
|
||
|
});
|
||
|
//提交报错信息
|
||
|
const saveOrUpdate = (params, isUpdate) => {
|
||
|
let url = isUpdate ? Api.edit : Api.save;
|
||
|
console.log(`🚀 ~ file: kclbList.vue:107 ~ saveOrUpdate ~ url:`, url)
|
||
|
return defHttp.post({ url: url, params }, { isTransformResponse: false });
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="less" scoped>
|
||
|
</style>
|