1
This commit is contained in:
@@ -72,3 +72,38 @@ export const addScore = (data: any) => {
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 生成班级论文上传统计
|
||||
* @param data
|
||||
*/
|
||||
export const generateSummary = (data: any) => {
|
||||
return request({
|
||||
url: '/stuwork/classpaper/generateSummary',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 初始化班级论文数据
|
||||
* @param data
|
||||
*/
|
||||
export const initClassPaper = (data: any) => {
|
||||
return request({
|
||||
url: '/stuwork/classpaper/init',
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询班级论文统计列表
|
||||
* @param data
|
||||
*/
|
||||
export const getSummaryList = (data: any) => {
|
||||
return request({
|
||||
url: '/stuwork/classpaper/summaryList',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
};
|
||||
|
||||
@@ -60,3 +60,26 @@ export const delObj = (ids: string[]) => {
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 初始化班级总结数据
|
||||
* @param data
|
||||
*/
|
||||
export const initClassSummary = (data: any) => {
|
||||
return request({
|
||||
url: '/stuwork/classsummary/init',
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询班级总结统计列表
|
||||
* @param data
|
||||
*/
|
||||
export const getStatisticsList = (data: any) => {
|
||||
return request({
|
||||
url: '/stuwork/classsummary/statisticsList',
|
||||
method: 'get',
|
||||
params: data
|
||||
});
|
||||
};
|
||||
|
||||
@@ -108,12 +108,26 @@
|
||||
班级论文/案例列表
|
||||
</span>
|
||||
<div class="header-actions">
|
||||
<el-button
|
||||
icon="Plus"
|
||||
type="primary"
|
||||
<el-button
|
||||
icon="Plus"
|
||||
type="primary"
|
||||
@click="formDialogRef.openDialog()">
|
||||
新增
|
||||
</el-button>
|
||||
<el-button
|
||||
icon="Plus"
|
||||
type="warning"
|
||||
class="ml10"
|
||||
@click="handleInitClassPaper">
|
||||
初始化
|
||||
</el-button>
|
||||
<el-button
|
||||
icon="DataAnalysis"
|
||||
type="success"
|
||||
class="ml10"
|
||||
@click="handleShowSummary">
|
||||
统计查看
|
||||
</el-button>
|
||||
<right-toolbar
|
||||
v-model:showSearch="showSearch"
|
||||
class="ml10"
|
||||
@@ -254,16 +268,157 @@
|
||||
|
||||
<!-- 新增/编辑表单弹窗 -->
|
||||
<form-dialog ref="formDialogRef" @refresh="getDataList" />
|
||||
|
||||
|
||||
<!-- 查看详情弹窗 -->
|
||||
<detail-dialog ref="detailDialogRef" />
|
||||
|
||||
<!-- 初始化班级论文弹窗 -->
|
||||
<el-dialog
|
||||
v-model="initDialogVisible"
|
||||
title="初始化班级论文数据"
|
||||
width="600px"
|
||||
:close-on-click-modal="false"
|
||||
draggable>
|
||||
<el-form label-width="120px">
|
||||
<el-form-item label="学年">
|
||||
<el-select
|
||||
v-model="initForm.schoolYear"
|
||||
placeholder="请选择学年"
|
||||
style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in schoolYearList"
|
||||
:key="item.year"
|
||||
:label="item.year"
|
||||
:value="item.year">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学期">
|
||||
<el-select
|
||||
v-model="initForm.schoolTerm"
|
||||
placeholder="请选择学期"
|
||||
style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in schoolTermList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学院">
|
||||
<el-select
|
||||
v-model="initForm.deptCode"
|
||||
placeholder="请选择学院(不选则全部)"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in deptList"
|
||||
:key="item.deptCode"
|
||||
:label="item.deptName"
|
||||
:value="item.deptCode">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-alert
|
||||
title="说明:"
|
||||
type="info"
|
||||
:closable="false"
|
||||
class="mb20">
|
||||
<template #default>
|
||||
<p class="mb10">初始化将为所有非离校班级生成本学年学期的论文数据:</p>
|
||||
<ul class="mb0 pl20">
|
||||
<li>自动获取当前学年学期配置</li>
|
||||
<li>为每个班级生成一条空论文记录</li>
|
||||
<li>班主任信息自动填充</li>
|
||||
<li>已存在记录不会重复生成</li>
|
||||
</ul>
|
||||
</template>
|
||||
</el-alert>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="initDialogVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="handleConfirmInit" :loading="initLoading">
|
||||
确 定
|
||||
</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 统计结果弹窗 -->
|
||||
<el-dialog
|
||||
v-model="summaryDialogVisible"
|
||||
title="班级论文上传统计"
|
||||
width="900px"
|
||||
:close-on-click-modal="false"
|
||||
draggable>
|
||||
<el-form :model="summarySearchForm" :inline="true" class="mb20">
|
||||
<el-form-item label="学年">
|
||||
<el-select
|
||||
v-model="summarySearchForm.schoolYear"
|
||||
placeholder="请选择学年"
|
||||
style="width: 180px">
|
||||
<el-option
|
||||
v-for="item in schoolYearList"
|
||||
:key="item.year"
|
||||
:label="item.year"
|
||||
:value="item.year">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学期">
|
||||
<el-select
|
||||
v-model="summarySearchForm.schoolTerm"
|
||||
placeholder="请选择学期"
|
||||
style="width: 180px">
|
||||
<el-option
|
||||
v-for="item in schoolTermList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleSearchSummary">查询</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table
|
||||
:data="summaryData"
|
||||
stripe
|
||||
v-loading="summaryLoading">
|
||||
<el-table-column prop="virtualClassNo" label="班号" width="100" />
|
||||
<el-table-column prop="deptName" label="学院" width="150" />
|
||||
<el-table-column prop="classMasterName" label="班主任" width="100" />
|
||||
<el-table-column prop="paperCount" label="论文总数" width="100" />
|
||||
<el-table-column prop="uploadCount" label="已上传" width="100">
|
||||
<template #default="{ row }">
|
||||
<span style="color: #67c23a">{{ row.uploadCount }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="unuploadCount" label="未上传" width="100">
|
||||
<template #default="{ row }">
|
||||
<span style="color: #f56c6c">{{ row.unuploadCount }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="addScoreCount" label="加分次数" width="100" />
|
||||
<el-table-column prop="totalPage" label="总页码" width="100" />
|
||||
</el-table>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="summaryDialogVisible = false">关 闭</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="ClassPaper">
|
||||
import { reactive, ref, onMounted } from 'vue'
|
||||
import { BasicTableProps, useTable } from "/@/hooks/table";
|
||||
import { fetchList, delObj, addScore } from "/@/api/stuwork/classpaper";
|
||||
import { fetchList, delObj, addScore, generateSummary, initClassPaper, getSummaryList } from "/@/api/stuwork/classpaper";
|
||||
import { getDeptList } from "/@/api/basic/basicclass";
|
||||
import { queryAllSchoolYear } from "/@/api/basic/basicyear";
|
||||
import { getClassListByRole } from "/@/api/basic/basicclass";
|
||||
@@ -272,7 +427,7 @@ import { useMessage, useMessageBox } from "/@/hooks/message";
|
||||
import TableColumnControl from '/@/components/TableColumnControl/index.vue'
|
||||
import FormDialog from './form.vue'
|
||||
import DetailDialog from './detail.vue'
|
||||
import { List, Document, Calendar, Clock, OfficeBuilding, Grid, UserFilled, Collection, Setting, Menu, Search } from '@element-plus/icons-vue'
|
||||
import { List, Document, Calendar, Clock, OfficeBuilding, Grid, UserFilled, Collection, Setting, Menu, Search, DataAnalysis, Plus } from '@element-plus/icons-vue'
|
||||
import { useTableColumnControl } from '/@/hooks/tableColumn'
|
||||
|
||||
// 定义变量内容
|
||||
@@ -290,6 +445,24 @@ const typeList = ref<any[]>([
|
||||
{ label: '教案', value: '1' }
|
||||
])
|
||||
|
||||
// 初始化对话框
|
||||
const initDialogVisible = ref(false)
|
||||
const initLoading = ref(false)
|
||||
const initForm = ref({
|
||||
schoolYear: '',
|
||||
schoolTerm: '',
|
||||
deptCode: ''
|
||||
})
|
||||
|
||||
// 统计对话框
|
||||
const summaryDialogVisible = ref(false)
|
||||
const summaryLoading = ref(false)
|
||||
const summarySearchForm = ref({
|
||||
schoolYear: '',
|
||||
schoolTerm: ''
|
||||
})
|
||||
const summaryData = ref<any[]>([])
|
||||
|
||||
// 表格列配置
|
||||
const tableColumns = [
|
||||
{ prop: 'title', label: '标题', icon: Document, minWidth: 200 },
|
||||
@@ -489,6 +662,85 @@ onMounted(() => {
|
||||
getDeptListData()
|
||||
getClassListData()
|
||||
})
|
||||
|
||||
// 生成统计
|
||||
const handleGenerateSummary = async () => {
|
||||
const year = state.queryForm.schoolYear
|
||||
const term = state.queryForm.schoolTerm
|
||||
if (!year || !term) {
|
||||
useMessage().warning('请先选择学年和学期')
|
||||
return
|
||||
}
|
||||
try {
|
||||
const res = await generateSummary({ schoolYear: year, schoolTerm: term })
|
||||
useMessage().success(res.msg || '统计生成成功')
|
||||
// 可以在这里打开一个对话框显示详细统计结果
|
||||
console.log('统计结果:', res.data)
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg || '统计生成失败')
|
||||
}
|
||||
}
|
||||
|
||||
// 显示初始化对话框
|
||||
const handleInitClassPaper = () => {
|
||||
// 设置默认学年学期
|
||||
if (schoolYearList.value.length > 0) {
|
||||
initForm.value.schoolYear = schoolYearList.value[0].year
|
||||
}
|
||||
if (schoolTermList.value.length > 0) {
|
||||
initForm.value.schoolTerm = schoolTermList.value[0].value
|
||||
}
|
||||
initDialogVisible.value = true
|
||||
}
|
||||
|
||||
// 确认初始化
|
||||
const handleConfirmInit = async () => {
|
||||
if (!initForm.value.schoolYear || !initForm.value.schoolTerm) {
|
||||
useMessage().warning('请选择学年和学期')
|
||||
return
|
||||
}
|
||||
initLoading.value = true
|
||||
try {
|
||||
const res = await initClassPaper(initForm.value)
|
||||
useMessage().success(res.msg || '初始化成功')
|
||||
initDialogVisible.value = false
|
||||
initLoading.value = false
|
||||
getDataList()
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg || '初始化失败')
|
||||
initLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
// 显示统计对话框
|
||||
const handleShowSummary = () => {
|
||||
// 设置默认学年学期
|
||||
if (state.queryForm.schoolYear) {
|
||||
summarySearchForm.value.schoolYear = state.queryForm.schoolYear
|
||||
}
|
||||
if (state.queryForm.schoolTerm) {
|
||||
summarySearchForm.value.schoolTerm = state.queryForm.schoolTerm
|
||||
}
|
||||
summaryDialogVisible.value = true
|
||||
handleSearchSummary()
|
||||
}
|
||||
|
||||
// 查询统计
|
||||
const handleSearchSummary = async () => {
|
||||
if (!summarySearchForm.value.schoolYear || !summarySearchForm.value.schoolTerm) {
|
||||
useMessage().warning('请选择学年和学期')
|
||||
return
|
||||
}
|
||||
summaryLoading.value = true
|
||||
try {
|
||||
const res = await getSummaryList(summarySearchForm.value)
|
||||
summaryData.value = res.data || []
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg || '查询失败')
|
||||
} finally {
|
||||
summaryLoading.value = false
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
492
src/views/stuwork/classpaper/summary.vue
Normal file
492
src/views/stuwork/classpaper/summary.vue
Normal file
@@ -0,0 +1,492 @@
|
||||
<template>
|
||||
<div class="modern-page-container">
|
||||
<div class="page-wrapper">
|
||||
<!-- 搜索表单卡片 -->
|
||||
<el-card v-show="showSearch" class="search-card" shadow="never">
|
||||
<template #header>
|
||||
<div class="card-header">
|
||||
<span class="card-title">
|
||||
<el-icon class="title-icon"><Search /></el-icon>
|
||||
筛选条件
|
||||
</span>
|
||||
</div>
|
||||
</template>
|
||||
<el-form :model="searchForm" ref="searchFormRef" :inline="true" class="search-form">
|
||||
<el-form-item label="学年" prop="schoolYear">
|
||||
<el-select
|
||||
v-model="searchForm.schoolYear"
|
||||
placeholder="请选择学年"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in schoolYearList"
|
||||
:key="item.year"
|
||||
:label="item.year"
|
||||
:value="item.year">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学期" prop="schoolTerm">
|
||||
<el-select
|
||||
v-model="searchForm.schoolTerm"
|
||||
placeholder="请选择学期"
|
||||
clearable
|
||||
style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in schoolTermList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学院" prop="deptName">
|
||||
<el-select
|
||||
v-model="searchForm.deptName"
|
||||
placeholder="请选择学院"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in deptList"
|
||||
:key="item.deptCode"
|
||||
:label="item.deptName"
|
||||
:value="item.deptName">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="班号" prop="classNo">
|
||||
<el-select
|
||||
v-model="searchForm.classNo"
|
||||
placeholder="请选择班号"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in classList"
|
||||
:key="item.classCode"
|
||||
:label="item.classNo"
|
||||
:value="item.classNo">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleSearch">查询</el-button>
|
||||
<el-button icon="Refresh" @click="handleReset">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
|
||||
<!-- 内容卡片 -->
|
||||
<el-card class="content-card" shadow="never">
|
||||
<template #header>
|
||||
<div class="card-header">
|
||||
<span class="card-title">
|
||||
<el-icon class="title-icon"><Document /></el-icon>
|
||||
班级论文上传统计
|
||||
</span>
|
||||
<div class="header-actions">
|
||||
<right-toolbar
|
||||
v-model:showSearch="showSearch"
|
||||
class="ml10"
|
||||
@queryTable="getDataList">
|
||||
<TableColumnControl
|
||||
ref="columnControlRef"
|
||||
:columns="tableColumns"
|
||||
v-model="visibleColumns"
|
||||
trigger-type="default"
|
||||
trigger-circle
|
||||
@change="handleColumnChange"
|
||||
@order-change="handleColumnOrderChange"
|
||||
>
|
||||
<template #trigger>
|
||||
<el-tooltip class="item" effect="dark" content="列设置" placement="top">
|
||||
<el-button circle style="margin-left: 0;">
|
||||
<el-icon><Menu /></el-icon>
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
</TableColumnControl>
|
||||
</right-toolbar>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- 统计数据卡片 -->
|
||||
<el-row :gutter="20" class="mb20">
|
||||
<el-col :span="6">
|
||||
<el-card shadow="never" class="stat-card">
|
||||
<div class="stat-item">
|
||||
<span class="stat-label">总班级数</span>
|
||||
<span class="stat-value">{{ totalStats.totalClasses }}</span>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-card shadow="never" class="stat-card">
|
||||
<div class="stat-item">
|
||||
<span class="stat-label">论文总数</span>
|
||||
<span class="stat-value">{{ totalStats.totalPapers }}</span>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-card shadow="never" class="stat-card">
|
||||
<div class="stat-item">
|
||||
<span class="stat-label">已上传</span>
|
||||
<span class="stat-value" style="color: #67c23a">{{ totalStats.totalUpload }}</span>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-card shadow="never" class="stat-card">
|
||||
<div class="stat-item">
|
||||
<span class="stat-label">未上传</span>
|
||||
<span class="stat-value" style="color: #f56c6c">{{ totalStats.totalUnupload }}</span>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<!-- 表格 -->
|
||||
<el-table
|
||||
:data="state.dataList"
|
||||
v-loading="state.loading"
|
||||
stripe
|
||||
:cell-style="tableStyle.cellStyle"
|
||||
:header-cell-style="tableStyle.headerCellStyle"
|
||||
class="modern-table">
|
||||
<el-table-column type="index" label="序号" width="70" align="center">
|
||||
<template #header>
|
||||
<el-icon><List /></el-icon>
|
||||
</template>
|
||||
<template #default="{ $index }">
|
||||
{{ $index + 1 + ((state.pagination?.current || 1) - 1) * (state.pagination?.size || 10) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<template v-for="col in visibleColumnsSorted" :key="col.prop || col.label">
|
||||
<el-table-column
|
||||
v-if="checkColumnVisible(col.prop || '') && col.prop !== '操作'"
|
||||
:prop="col.prop"
|
||||
:label="col.label"
|
||||
:width="col.width"
|
||||
:min-width="col.minWidth"
|
||||
:show-overflow-tooltip="col.showOverflowTooltip !== false"
|
||||
:align="col.align || 'center'>
|
||||
<template #header>
|
||||
<el-icon v-if="col.icon"><component :is="col.icon" /></el-icon>
|
||||
<span :style="{ marginLeft: col.icon ? '4px' : '0' }">{{ col.label }}</span>
|
||||
</template>
|
||||
<!-- 上传状态列特殊模板 -->
|
||||
<template v-else-if="col.prop === 'uploadStatus'" #default="scope">
|
||||
<el-tag
|
||||
v-if="scope.row.unuploadCount === 0"
|
||||
size="small"
|
||||
type="success"
|
||||
effect="plain"
|
||||
round>
|
||||
已完成
|
||||
</el-tag>
|
||||
<el-tag
|
||||
v-else-if="scope.row.unuploadCount < scope.row.paperCount"
|
||||
size="small"
|
||||
type="warning"
|
||||
effect="plain"
|
||||
round>
|
||||
部分未交
|
||||
</el-tag>
|
||||
<el-tag
|
||||
v-else
|
||||
size="small"
|
||||
type="danger"
|
||||
effect="plain"
|
||||
round>
|
||||
全未交
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</template>
|
||||
<el-table-column label="操作" width="150" align="center" fixed="right">
|
||||
<template #header>
|
||||
<el-icon><Setting /></el-icon>
|
||||
<span style="margin-left: 4px">操作</span>
|
||||
</template>
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
icon="View"
|
||||
link
|
||||
type="primary"
|
||||
@click="handleViewDetail(scope.row)">
|
||||
查看
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<template #empty>
|
||||
<el-empty description="暂无数据" :image-size="120" />
|
||||
</template>
|
||||
</el-table>
|
||||
|
||||
<!-- 分页 -->
|
||||
<div class="pagination-wrapper">
|
||||
<pagination
|
||||
@size-change="sizeChangeHandle"
|
||||
@current-change="currentChangeHandle"
|
||||
v-bind="state.pagination" />
|
||||
</div>
|
||||
</el-card>
|
||||
</div>
|
||||
|
||||
<!-- 详细信息弹窗 -->
|
||||
<el-dialog
|
||||
v-model="detailDialogVisible"
|
||||
title="论文详细信息"
|
||||
width="800px"
|
||||
:close-on-click-modal="false"
|
||||
draggable>
|
||||
<el-form label-width="100px">
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="班号">{{ detailInfo.virtualClassNo || '-' }}</el-form-item>
|
||||
<el-form-item label="学院">{{ detailInfo.deptName || '-' }}</el-form-item>
|
||||
<el-form-item label="班主任">{{ detailInfo.classMasterName || '-' }}</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="论文总数">{{ detailInfo.paperCount || 0 }}</el-form-item>
|
||||
<el-form-item label="已上传">{{ detailInfo.uploadCount || 0 }}</el-form-item>
|
||||
<el-form-item label="未上传">{{ detailInfo.unuploadCount || 0 }}</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-form-item label="未交学生名单">
|
||||
<el-input
|
||||
v-model="unuploadStudents"
|
||||
type="textarea"
|
||||
:rows="4"
|
||||
readonly
|
||||
placeholder="无未交学生" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="detailDialogVisible = false">关 闭</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="ClassPaperSummary">
|
||||
import { reactive, ref, onMounted } from 'vue'
|
||||
import { BasicTableProps, useTable } from "/@/hooks/table";
|
||||
import { getSummaryList } from "/@/api/stuwork/classpaper";
|
||||
import { getDeptList } from '/@/api/basic/basicclass'
|
||||
import { queryAllSchoolYear } from '/@/api/basic/basicyear';
|
||||
import { getClassListByRole } from '/@/api/basic/basicclass';
|
||||
import { getDicts } from '/@/api/admin/dict';
|
||||
import { useMessage } from "/@/hooks/message";
|
||||
import TableColumnControl from '/@/components/TableColumnControl/index.vue'
|
||||
import { List, Document, Calendar, Clock, OfficeBuilding, Grid, Setting, Menu, Search, UserFilled, Tickets } from '@element-plus/icons-vue'
|
||||
import { useTableColumnControl } from '/@/hooks/tableColumn'
|
||||
|
||||
// 定义变量内容
|
||||
const columnControlRef = ref<any>()
|
||||
const searchFormRef = ref()
|
||||
const showSearch = ref(true)
|
||||
const schoolYearList = ref<any[]>([])
|
||||
const schoolTermList = ref<any[]>([])
|
||||
const deptList = ref<any[]>([])
|
||||
const classList = ref<any[]>([])
|
||||
const detailDialogVisible = ref(false)
|
||||
const detailInfo = ref<any>({})
|
||||
const unuploadStudents = ref('')
|
||||
|
||||
// 统计数据
|
||||
const totalStats = ref({
|
||||
totalClasses: 0,
|
||||
totalPapers: 0,
|
||||
totalUpload: 0,
|
||||
totalUnupload: 0
|
||||
})
|
||||
|
||||
// 表格列配置
|
||||
const tableColumns = [
|
||||
{ prop: 'virtualClassNo', label: '班号', icon: Grid, minWidth: 100 },
|
||||
{ prop: 'deptName', label: '学院', icon: OfficeBuilding, minWidth: 150 },
|
||||
{ prop: 'classMasterName', label: '班主任', icon: UserFilled, minWidth: 100 },
|
||||
{ prop: 'paperCount', label: '论文总数', icon: Document, minWidth: 100 },
|
||||
{ prop: 'uploadCount', label: '已上传', icon: Document, minWidth: 100 },
|
||||
{ prop: 'unuploadCount', label: '未上传', icon: Document, minWidth: 100, type: 'warning' },
|
||||
{ prop: 'addScoreCount', label: '加分次数', icon: Document, minWidth: 100 },
|
||||
{ prop: 'totalPage', label: '总页码', icon: Document, minWidth: 100 },
|
||||
{ prop: 'uploadStatus', label: '上传状态', icon: Tickets, minWidth: 100 }
|
||||
]
|
||||
|
||||
// 使用表格列控制 Hook
|
||||
const {
|
||||
visibleColumns,
|
||||
visibleColumnsSorted,
|
||||
checkColumnVisible,
|
||||
handleColumnChange,
|
||||
handleColumnOrderChange
|
||||
} = useTableColumnControl(tableColumns)
|
||||
|
||||
// 配置 useTable
|
||||
const state: BasicTableProps = reactive<BasicTableProps>({
|
||||
queryForm: {},
|
||||
pageList: getSummaryList,
|
||||
props: {
|
||||
item: 'records',
|
||||
totalCount: 'total'
|
||||
}
|
||||
})
|
||||
|
||||
// table hook
|
||||
const {
|
||||
getDataList,
|
||||
currentChangeHandle,
|
||||
sizeChangeHandle,
|
||||
tableStyle
|
||||
} = useTable(state)
|
||||
|
||||
// 搜索表单
|
||||
const searchForm = reactive({
|
||||
schoolYear: '',
|
||||
schoolTerm: '',
|
||||
deptName: '',
|
||||
classNo: ''
|
||||
})
|
||||
|
||||
// 查询
|
||||
const handleSearch = async () => {
|
||||
// 将searchForm转换为DTO格式
|
||||
const dto = {
|
||||
schoolYear: searchForm.schoolYear,
|
||||
schoolTerm: searchForm.schoolTerm,
|
||||
deptName: searchForm.deptName,
|
||||
classNo: searchForm.classNo
|
||||
}
|
||||
const res = await getSummaryList(dto)
|
||||
if (res.data) {
|
||||
state.dataList = Array.isArray(res.data) ? res.data : []
|
||||
// 计算统计数据
|
||||
calculateStats(state.dataList)
|
||||
}
|
||||
}
|
||||
|
||||
// 重置
|
||||
const handleReset = () => {
|
||||
searchFormRef.value?.resetFields()
|
||||
searchForm.schoolYear = ''
|
||||
searchForm.schoolTerm = ''
|
||||
searchForm.deptName = ''
|
||||
searchForm.classNo = ''
|
||||
handleSearch()
|
||||
}
|
||||
|
||||
// 计算统计数据
|
||||
const calculateStats = (data: any[]) => {
|
||||
totalStats.value = {
|
||||
totalClasses: data.length,
|
||||
totalPapers: data.reduce((sum, item) => sum + (item.paperCount || 0), 0),
|
||||
totalUpload: data.reduce((sum, item) => sum + (item.uploadCount || 0), 0),
|
||||
totalUnupload: data.reduce((sum, item) => sum + (item.unuploadCount || 0), 0)
|
||||
}
|
||||
}
|
||||
|
||||
// 查看详情
|
||||
const handleViewDetail = (row: any) => {
|
||||
detailInfo.value = { ...row }
|
||||
// TODO: 获取未交学生名单
|
||||
unuploadStudents.value = '暂无详细信息'
|
||||
detailDialogVisible.value = true
|
||||
}
|
||||
|
||||
// 获取学年列表
|
||||
const getSchoolYearList = async () => {
|
||||
try {
|
||||
const res = await queryAllSchoolYear()
|
||||
if (res.data && Array.isArray(res.data)) {
|
||||
schoolYearList.value = res.data
|
||||
} else {
|
||||
schoolYearList.value = []
|
||||
}
|
||||
} catch (err) {
|
||||
schoolYearList.value = []
|
||||
}
|
||||
}
|
||||
|
||||
// 获取学期字典
|
||||
const getSchoolTermDict = async () => {
|
||||
try {
|
||||
const res = await getDicts('school_term')
|
||||
if (res.data && Array.isArray(res.data)) {
|
||||
schoolTermList.value = res.data.map((item: any) => ({
|
||||
label: item.label || item.dictLabel || item.name,
|
||||
value: item.value || item.dictValue || item.code
|
||||
}))
|
||||
} else {
|
||||
schoolTermList.value = []
|
||||
}
|
||||
} catch (err) {
|
||||
schoolTermList.value = []
|
||||
}
|
||||
}
|
||||
|
||||
// 获取学院列表
|
||||
const getDeptListData = async () => {
|
||||
try {
|
||||
const res = await getDeptList()
|
||||
if (res.data && Array.isArray(res.data)) {
|
||||
deptList.value = res.data
|
||||
} else {
|
||||
deptList.value = []
|
||||
}
|
||||
} catch (err) {
|
||||
deptList.value = []
|
||||
}
|
||||
}
|
||||
|
||||
// 获取班号列表
|
||||
const getClassListData = async () => {
|
||||
try {
|
||||
const res = await getClassListByRole()
|
||||
if (res.data && Array.isArray(res.data)) {
|
||||
classList.value = res.data
|
||||
} else {
|
||||
classList.value = []
|
||||
}
|
||||
} catch (err) {
|
||||
classList.value = []
|
||||
}
|
||||
}
|
||||
|
||||
// 初始化
|
||||
onMounted(() => {
|
||||
getSchoolYearList()
|
||||
getSchoolTermDict()
|
||||
getDeptListData()
|
||||
getClassListData()
|
||||
// 默认查询当前学期数据
|
||||
handleSearch()
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import '/@/assets/styles/modern-page.scss';
|
||||
|
||||
.stat-card {
|
||||
.stat-item {
|
||||
.stat-label {
|
||||
font-size: 14px;
|
||||
color: #909399;
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.stat-value {
|
||||
font-size: 28px;
|
||||
font-weight: bold;
|
||||
color: #303133;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -101,13 +101,27 @@
|
||||
班级总结列表
|
||||
</span>
|
||||
<div class="header-actions">
|
||||
<el-button
|
||||
icon="Plus"
|
||||
type="primary"
|
||||
<el-button
|
||||
icon="Plus"
|
||||
type="primary"
|
||||
@click="formDialogRef.openDialog()">
|
||||
新增
|
||||
</el-button>
|
||||
<right-toolbar
|
||||
<el-button
|
||||
icon="Plus"
|
||||
type="warning"
|
||||
class="ml10"
|
||||
@click="handleInitClassSummary">
|
||||
初始化
|
||||
</el-button>
|
||||
<el-button
|
||||
icon="DataAnalysis"
|
||||
type="success"
|
||||
class="ml10"
|
||||
@click="handleShowStatistics">
|
||||
统计查看
|
||||
</el-button>
|
||||
<right-toolbar
|
||||
v-model:showSearch="showSearch"
|
||||
class="ml10"
|
||||
@queryTable="getDataList">
|
||||
@@ -286,16 +300,192 @@
|
||||
|
||||
<!-- 新增/编辑表单弹窗 -->
|
||||
<form-dialog ref="formDialogRef" @refresh="getDataList" />
|
||||
|
||||
|
||||
<!-- 查看详情弹窗 -->
|
||||
<detail-dialog ref="detailDialogRef" />
|
||||
|
||||
<!-- 初始化班级总结弹窗 -->
|
||||
<el-dialog
|
||||
v-model="initDialogVisible"
|
||||
title="初始化班级总结数据"
|
||||
width="600px"
|
||||
:close-on-click-modal="false"
|
||||
draggable>
|
||||
<el-form label-width="120px">
|
||||
<el-form-item label="学年">
|
||||
<el-select
|
||||
v-model="initForm.schoolYear"
|
||||
placeholder="请选择学年"
|
||||
style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in schoolYearList"
|
||||
:key="item.year"
|
||||
:label="item.year"
|
||||
:value="item.year">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学期">
|
||||
<el-select
|
||||
v-model="initForm.schoolTerm"
|
||||
placeholder="请选择学期"
|
||||
style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in schoolTermList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学院">
|
||||
<el-select
|
||||
v-model="initForm.deptCode"
|
||||
placeholder="请选择学院(不选则全部)"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 100%">
|
||||
<el-option
|
||||
v-for="item in deptList"
|
||||
:key="item.deptCode"
|
||||
:label="item.deptName"
|
||||
:value="item.deptCode">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-alert
|
||||
title="说明:"
|
||||
type="info"
|
||||
:closable="false"
|
||||
class="mb20">
|
||||
<template #default>
|
||||
<p class="mb10">初始化将为所有非离校班级生成本学年学期的总结数据:</p>
|
||||
<ul class="mb0 pl20">
|
||||
<li>自动获取当前学年学期配置</li>
|
||||
<li>为每个班级生成一条空总结记录</li>
|
||||
<li>基础人数数据初始化为0</li>
|
||||
<li>已存在记录不会重复生成</li>
|
||||
</ul>
|
||||
</template>
|
||||
</el-alert>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="initDialogVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="handleConfirmInit" :loading="initLoading">
|
||||
确 定
|
||||
</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 统计结果弹窗 -->
|
||||
<el-dialog
|
||||
v-model="statisticsDialogVisible"
|
||||
title="班级总结统计"
|
||||
width="900px"
|
||||
:close-on-click-modal="false"
|
||||
draggable>
|
||||
<el-form :model="statisticsSearchForm" :inline="true" class="mb20">
|
||||
<el-form-item label="学年">
|
||||
<el-select
|
||||
v-model="statisticsSearchForm.schoolYear"
|
||||
placeholder="请选择学年"
|
||||
style="width: 180px">
|
||||
<el-option
|
||||
v-for="item in schoolYearList"
|
||||
:key="item.year"
|
||||
:label="item.year"
|
||||
:value="item.year">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学期">
|
||||
<el-select
|
||||
v-model="statisticsSearchForm.schoolTerm"
|
||||
placeholder="请选择学期"
|
||||
style="width: 180px">
|
||||
<el-option
|
||||
v-for="item in schoolTermList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="学院">
|
||||
<el-select
|
||||
v-model="statisticsSearchForm.deptCode"
|
||||
placeholder="请选择学院"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 180px">
|
||||
<el-option
|
||||
v-for="item in deptList"
|
||||
:key="item.deptCode"
|
||||
:label="item.deptName"
|
||||
:value="item.deptCode">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="班号">
|
||||
<el-select
|
||||
v-model="statisticsSearchForm.classNo"
|
||||
placeholder="请选择班号"
|
||||
clearable
|
||||
filterable
|
||||
style="width: 180px">
|
||||
<el-option
|
||||
v-for="item in classList"
|
||||
:key="item.classCode"
|
||||
:label="item.classNo"
|
||||
:value="item.classNo">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleSearchStatistics">查询</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table
|
||||
:data="statisticsData"
|
||||
stripe
|
||||
v-loading="statisticsLoading">
|
||||
<el-table-column prop="classNo" label="班号" width="100" />
|
||||
<el-table-column prop="deptName" label="学院" width="150" />
|
||||
<el-table-column prop="teacherRealName" label="班主任" width="100" />
|
||||
<el-table-column prop="hasRecord" label="是否有记录" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag
|
||||
v-if="row.hasRecord === 1"
|
||||
size="small"
|
||||
type="success"
|
||||
effect="plain">
|
||||
有
|
||||
</el-tag>
|
||||
<el-tag
|
||||
v-else
|
||||
size="small"
|
||||
type="danger"
|
||||
effect="plain">
|
||||
无
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="statisticsDialogVisible = false">关 闭</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="ClassSummary">
|
||||
import { reactive, ref, onMounted } from 'vue'
|
||||
import { BasicTableProps, useTable } from "/@/hooks/table";
|
||||
import { fetchList, delObj } from "/@/api/stuwork/classsummary";
|
||||
import { fetchList, delObj, initClassSummary, getStatisticsList } from "/@/api/stuwork/classsummary";
|
||||
import { getTeachDept } from "/@/api/basic/basicdept";
|
||||
import { queryAllSchoolYear } from "/@/api/basic/basicyear";
|
||||
import { getClassListByRole } from "/@/api/basic/basicclass";
|
||||
@@ -304,7 +494,7 @@ import { useMessage, useMessageBox } from "/@/hooks/message";
|
||||
import TableColumnControl from '/@/components/TableColumnControl/index.vue'
|
||||
import FormDialog from './form.vue'
|
||||
import DetailDialog from './detail.vue'
|
||||
import { List, Calendar, Clock, Grid, UserFilled, Male, Female, House, Warning, CircleCheck, Setting, Menu, Search, Document } from '@element-plus/icons-vue'
|
||||
import { List, Calendar, Clock, Grid, UserFilled, Male, Female, House, Warning, CircleCheck, Setting, Menu, Search, Document, Plus, DataAnalysis } from '@element-plus/icons-vue'
|
||||
import { useTableColumnControl } from '/@/hooks/tableColumn'
|
||||
|
||||
// 定义变量内容
|
||||
@@ -319,6 +509,26 @@ const deptList = ref<any[]>([])
|
||||
const classList = ref<any[]>([])
|
||||
const statusList = ref<any[]>([])
|
||||
|
||||
// 初始化对话框
|
||||
const initDialogVisible = ref(false)
|
||||
const initLoading = ref(false)
|
||||
const initForm = ref({
|
||||
schoolYear: '',
|
||||
schoolTerm: '',
|
||||
deptCode: ''
|
||||
})
|
||||
|
||||
// 统计对话框
|
||||
const statisticsDialogVisible = ref(false)
|
||||
const statisticsLoading = ref(false)
|
||||
const statisticsSearchForm = ref({
|
||||
schoolYear: '',
|
||||
schoolTerm: '',
|
||||
deptCode: '',
|
||||
classNo: ''
|
||||
})
|
||||
const statisticsData = ref<any[]>([])
|
||||
|
||||
// 表格列配置
|
||||
const tableColumns = [
|
||||
{ prop: 'schoolYear', label: '学年', icon: Calendar },
|
||||
@@ -508,6 +718,67 @@ onMounted(() => {
|
||||
getClassListData()
|
||||
getStatusDict()
|
||||
})
|
||||
|
||||
// 初始化班级总结
|
||||
const handleInitClassSummary = () => {
|
||||
// 设置默认学年学期
|
||||
if (schoolYearList.value.length > 0) {
|
||||
initForm.value.schoolYear = schoolYearList.value[0].year
|
||||
}
|
||||
if (schoolTermList.value.length > 0) {
|
||||
initForm.value.schoolTerm = schoolTermList.value[0].value
|
||||
}
|
||||
initDialogVisible.value = true
|
||||
}
|
||||
|
||||
// 确认初始化
|
||||
const handleConfirmInit = async () => {
|
||||
if (!initForm.value.schoolYear || !initForm.value.schoolTerm) {
|
||||
useMessage().warning('请选择学年和学期')
|
||||
return
|
||||
}
|
||||
initLoading.value = true
|
||||
try {
|
||||
const res = await initClassSummary(initForm.value)
|
||||
useMessage().success(res.msg || '初始化成功')
|
||||
initDialogVisible.value = false
|
||||
initLoading.value = false
|
||||
getDataList()
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg || '初始化失败')
|
||||
initLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
// 显示统计对话框
|
||||
const handleShowStatistics = () => {
|
||||
// 设置默认学年学期
|
||||
if (state.queryForm.schoolYear) {
|
||||
statisticsSearchForm.value.schoolYear = state.queryForm.schoolYear
|
||||
}
|
||||
if (state.queryForm.schoolTerm) {
|
||||
statisticsSearchForm.value.schoolTerm = state.queryForm.schoolTerm
|
||||
}
|
||||
statisticsDialogVisible.value = true
|
||||
handleSearchStatistics()
|
||||
}
|
||||
|
||||
// 查询统计
|
||||
const handleSearchStatistics = async () => {
|
||||
if (!statisticsSearchForm.value.schoolYear || !statisticsSearchForm.value.schoolTerm) {
|
||||
useMessage().warning('请选择学年和学期')
|
||||
return
|
||||
}
|
||||
statisticsLoading.value = true
|
||||
try {
|
||||
const res = await getStatisticsList(statisticsSearchForm.value)
|
||||
statisticsData.value = res.data || []
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg || '查询失败')
|
||||
} finally {
|
||||
statisticsLoading.value = false
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user