dbsd_kczx/src/views/zy/zyInfo/StudentZyInfoList.vue

289 lines
9.6 KiB
Vue
Raw Normal View History

2024-05-10 20:02:14 +08:00
<template>
2024-05-23 17:30:43 +08:00
<div style="background: #fff;height: calc(100vh - 225px);overflow-y: auto;overflow-x: hidden;margin: 10px 0;">
2024-05-10 20:02:14 +08:00
<!--查询区域-->
<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="8">
<a-form-item label="作业名称">
2024-05-21 17:53:16 +08:00
<j-input placeholder="请输入作业名称" v-model:value="queryParam.title"></j-input>
2024-05-10 20:02:14 +08:00
</a-form-item>
</a-col>
2024-05-13 16:29:57 +08:00
<!-- <a-col :lg="8">
2024-05-10 20:02:14 +08:00
<a-form-item label="类型">
<j-dict-select-tag placeholder="请选择类型" v-model:value="queryParam.zyType" dictCode="zy_type"/>
</a-form-item>
2024-05-13 16:29:57 +08:00
</a-col> -->
2024-05-10 20:02:14 +08:00
<!-- <a-col :lg="8">
<a-form-item label="学年学期">
<a-input placeholder="请输入学年学期" v-model:value="queryParam.xnxq"></a-input>
</a-form-item>
</a-col> -->
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
<a-col :lg="6">
<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-col>
</span>
</a-col>
</a-row>
</a-form>
</div>
<a-row>
2024-05-23 17:30:43 +08:00
<a-col :span="8" v-for="(item, index) in tableData" :key="index" style="padding: 0px 0px 5px 5px;overflow:hidden;">
2024-05-10 20:02:14 +08:00
<div style="width: 100%; height: 20px; background-color: rgb(28, 132, 198);"></div>
2024-05-22 13:43:18 +08:00
<a-card style="height: 240px;border: 1px solid rgb(28, 132, 198);">
2024-05-13 22:48:44 +08:00
<div class="rotate" :style="classFun(item)">{{callText(item)}}</div>
2024-05-10 20:02:14 +08:00
<a-row style="top: -48px;position: relative;">
<a-col :span="24" style="margin-bottom: 10px;height:53px;overflow:hidden;" :title="item.title">
<!-- <div style="font-size: 18px;font-weight: bold;" class="ellipsis">{{item.title}}</div> -->
2024-05-13 22:48:44 +08:00
<div style="font-size: 18px;font-weight: bold;">{{item.title}}</div>
2024-05-10 20:02:14 +08:00
</a-col>
<a-col :span="24" class="zyCon">时间{{item.startTime}} - {{item.endTime}}</a-col>
2024-05-21 17:53:16 +08:00
<a-col :span="24" class="zyCon">
2024-05-22 13:43:18 +08:00
<div style="float:left" >评分{{item.score?item.score:'未评'}}</div>
2024-05-22 18:26:41 +08:00
<div style="float:right;">网络查重:{{item.wwxsl?item.wwxsl+'%':'-'}}</div>
2024-05-22 13:43:18 +08:00
</a-col>
<a-col :span="24" class="zyCon">
2024-05-22 18:26:41 +08:00
<div style="float:left" >课程内查重:{{item.nwxsl?item.nwxsl+'%':'-'}}</div>
<div style="float:right;">Aigc查重:{{item.aigcxsl?item.aigcxsl+'%':'-'}}</div>
2024-05-21 17:53:16 +08:00
</a-col>
2024-05-10 20:02:14 +08:00
<a-col :span="24" style="text-align:center;margin-top:20px;">
<a-button type="primary" @click="handleDetail(item)" style="margin-left:5px;background:rgb(28, 132, 198);">详情</a-button>
2024-05-24 20:43:23 +08:00
<a-button type="primary" @click="handleShangchuan(item)" style="margin-left:5px;background:rgb(28, 132, 198);" v-if="!item.stuFilePath">上传</a-button>
<a-button type="primary" @click="handlePreview(item)" style="margin-left:5px;background:rgb(28, 132, 198);" v-if="item.stuFilePath">预览</a-button>
2024-05-10 20:02:14 +08:00
</a-col>
</a-row>
</a-card>
</a-col>
<a-col :span="24">
<div v-show="tableData.length>0">
<a-pagination v-model="current" :total="total" @change="handlePageChange" :pageSize="pageSize" style="text-align: right;"/>
</div>
<div v-show="tableData.length==0">
<a-empty/>
</div>
</a-col>
</a-row>
<ZyInfoModal ref="registerModal" @success="handleSuccess"></ZyInfoModal>
<ZyInfoStudentListModal ref="ZyInfoStudentListModalPage"></ZyInfoStudentListModal>
2024-05-15 21:12:55 +08:00
<ZyInfoStudentModal ref="ZyInfoStudentModalPage" @success="handleSuccess"></ZyInfoStudentModal>
2024-05-10 20:02:14 +08:00
<XxhbbksListModal ref="XxhbbksListModalPage"></XxhbbksListModal>
</div>
</template>
<script lang="ts" name="zyInfo-zyInfo" setup>
import { ref, reactive, onMounted,unref } from 'vue';
import { list, deleteOne } from './ZyInfo.api';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
import { Input, Popover, Pagination, Empty } from 'ant-design-vue';
import { defHttp } from '/@/utils/http/axios';
import { useMessage } from "/@/hooks/web/useMessage";
import { useRouter } from 'vue-router';
2024-05-21 17:53:16 +08:00
import JInput from '/@/components/Form/src/jeecg/components/JInput.vue';
2024-05-10 20:02:14 +08:00
import ZyInfoModal from './components/ZyInfoModal.vue';
import ZyInfoStudentListModal from '/@/views/zy/zyInfoStudent/ZyInfoStudentListModal.vue';
import ZyInfoStudentModal from '/@/views/zy/zyInfoStudent/components/ZyInfoStudentModal.vue';
import XxhbbksListModal from '/@/views/kc/xxhbbks/XxhbbksListModal.vue';
//当前路由信息
const { currentRoute } = useRouter();
const { query } = unref(currentRoute);
const { rwbh,xqxn,type } = query;//获取传递参数
const APagination = Pagination;
const { createConfirm,createMessage } = useMessage();
const queryParam = ref<any>({});
const toggleSearchStatus = ref<boolean>(false);
const registerModal = ref();
const ZyInfoStudentListModalPage = ref();
const ZyInfoStudentModalPage = ref();
const XxhbbksListModalPage = ref();
const current = ref<number>(0);
const total = ref<number>(0);
const pageNo = ref<number>(0);
const pageSize = ref<number>(6);
const tableData = ref<any>([]);
2024-05-10 20:02:14 +08:00
const labelCol = reactive({
xs: { span: 24 },
sm: { span: 7 },
});
const wrapperCol = reactive({
xs: { span: 24 },
sm: { span: 16 },
});
2024-05-13 22:48:44 +08:00
function classFun(record){
if(record.score){
return "background: #18a689";
2024-05-23 18:09:34 +08:00
}else if(record.stuFilePath){
return "background: #c6c209";
2024-05-13 22:48:44 +08:00
}else{
2024-05-23 18:09:34 +08:00
return "background: #fe1a1a";
2024-05-13 22:48:44 +08:00
}
}
function callText(record){
if(record.score){
2024-05-24 15:31:26 +08:00
return "已完成";
2024-05-13 22:48:44 +08:00
}else if(record.stuFilePath){
2024-05-24 15:31:26 +08:00
return "待评分";
2024-05-13 22:48:44 +08:00
}else{
2024-05-24 15:31:26 +08:00
return "待提交";
2024-05-13 22:48:44 +08:00
}
}
2024-05-10 20:02:14 +08:00
/**
* 详情
*/
function handleDetail(record: Recordable) {
registerModal.value.disableSubmit = true;
registerModal.value.edit(record);
}
//上传作业附件
function handleShangchuan(record){
2024-05-21 17:53:16 +08:00
let timestamp = new Date().getTime();
let startTimestamp = Date.parse(record.startTime);
if(timestamp<startTimestamp){
createMessage.error('还未到答卷时间!');
return;
}
let endTimestamp = Date.parse(record.endTime);
if(timestamp>endTimestamp){
createMessage.error('答卷时间已过!');
return;
}
2024-05-24 09:42:02 +08:00
createConfirm({
2024-05-24 20:43:23 +08:00
iconType: 'warning',
title: '确认上传',
content: '是否确认上传作业',
okText: '确认',
cancelText: '取消',
onOk: () => {
ZyInfoStudentModalPage.value.disableSubmit = false;
var param = {id:record.stuId,zyfj:record.filePath}
ZyInfoStudentModalPage.value.edit(param);
}
});
}
//预览
function handlePreview(record){
console.log(record);
record.isYl = true;
ZyInfoStudentModalPage.value.disableSubmit = true;
ZyInfoStudentModalPage.value.edit(record);
2024-05-10 20:02:14 +08:00
}
//获取选课人数
function openXkrs(record){
console.log(`🚀 ~ openXkrs ~ record:`, record)
2024-05-15 21:12:55 +08:00
XxhbbksListModalPage.value.disableSubmit = false;
2024-05-10 20:02:14 +08:00
XxhbbksListModalPage.value.init(record);
}
2024-05-10 20:02:14 +08:00
/**
* 成功回调用于增加修改发布和撤回
2024-05-10 20:02:14 +08:00
*/
function handleSuccess() {
reload();
2024-05-10 20:02:14 +08:00
}
2024-05-10 20:02:14 +08:00
/**
* 查询
*/
function searchQuery() {
total.value = 1;
handlePageChange(1);
2024-05-10 20:02:14 +08:00
}
2024-05-10 20:02:14 +08:00
/**
* 重置
*/
function searchReset() {
queryParam.value = {};
//刷新数据
total.value = 1;
handlePageChange(1);
2024-05-10 20:02:14 +08:00
}
function reload(){
queryParam.value.pageNo = current.value;
queryParam.value.pageSize = pageSize.value;
2024-05-10 20:02:14 +08:00
queryParam.value.rwbh = rwbh;
queryParam.value.xqxn = xqxn;
2024-05-13 16:29:57 +08:00
queryParam.value.zyStatus = '1,2,3,4';
queryParam.value.column="createTime";
queryParam.value.order="desc";
defHttp.get({ url: '/zyInfo/zyInfo/stuList', params: queryParam.value }).then(res => {
// console.log(`🚀 ~ defHttp.get ~ res:`, res)
2024-05-10 20:02:14 +08:00
total.value = res.total;
pageNo.value = res.pages;
current.value = res.current;
tableData.value = res.records;
});
}
2024-05-10 20:02:14 +08:00
function handlePageChange(record){
current.value = record;
reload();
2024-05-10 20:02:14 +08:00
}
onMounted(() => {
searchQuery();
});
</script>
<style lang="less" scoped>
.jeecg-basic-table-form-container {
padding: 0;
2024-05-23 17:30:43 +08:00
width: 99%;
2024-05-10 20:02:14 +08:00
.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-container .ant-form {
padding: 12px 10px 0px 10px;
margin-bottom: 0px;
background-color: #fff;
border-radius: 2px;
}
.ellipsis {
overflow: hidden; /* 确保超出容器的内容被裁剪 */
white-space: nowrap; /* 确保文本在一行内显示 */
text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.zyCon{
line-height: 30px;
}
.rotate {
2024-05-10 20:02:14 +08:00
transform: rotate(45deg);
background: rgb(28, 132, 198);
color: #fff;
padding: 19px 10px 3px 10px;
position: relative;
top: -54px;
right: -131px;
text-align: center;
font-size: 11px;
}
</style>