429 lines
13 KiB
Vue
429 lines
13 KiB
Vue
<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" @keyup.enter="handleSearch" 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-input v-model="searchForm.schoolTerm" placeholder="请输入学期" clearable style="width: 200px" />
|
|
</el-form-item>
|
|
<el-form-item label="学院" prop="deptCode">
|
|
<el-select v-model="searchForm.deptCode" placeholder="请选择学院" clearable filterable style="width: 200px" @change="handleDeptChange">
|
|
<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="班号" prop="classCode">
|
|
<el-select v-model="searchForm.classCode" placeholder="请选择班号" clearable filterable style="width: 200px">
|
|
<el-option v-for="item in filteredClassList" :key="item.classCode" :label="item.classNo" :value="item.classCode"> </el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="学生" prop="realName">
|
|
<el-input v-model="searchForm.realName" placeholder="请输入学生姓名" clearable style="width: 200px" />
|
|
</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">
|
|
<el-button icon="FolderAdd" type="primary" @click="formDialogRef.openDialog()"> 新增 </el-button>
|
|
<el-button icon="Upload" type="success" class="ml10" @click="handleImport"> 导入 </el-button>
|
|
<el-button icon="Download" type="warning" class="ml10" @click="handleExport"> 导出 </el-button>
|
|
<el-button icon="DataAnalysis" type="info" class="ml10" @click="handleRank"> 学期统计 </el-button>
|
|
<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-table
|
|
:data="state.dataList"
|
|
v-loading="state.loading"
|
|
stripe
|
|
:cell-style="tableStyle.cellStyle"
|
|
:header-cell-style="tableStyle.headerCellStyle"
|
|
class="modern-table"
|
|
@sort-change="sortChangeHandle"
|
|
>
|
|
<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-if="col.prop === 'score'" #default="scope">
|
|
<el-tag
|
|
v-if="scope.row.score !== undefined && scope.row.score !== null"
|
|
size="small"
|
|
:type="scope.row.score >= 0 ? 'success' : 'danger'"
|
|
effect="plain"
|
|
round
|
|
>
|
|
{{ scope.row.score }}
|
|
</el-tag>
|
|
<span v-else>-</span>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<el-table-column label="操作" width="100" align="center" fixed="right">
|
|
<template #header>
|
|
<el-icon><Setting /></el-icon>
|
|
<span style="margin-left: 4px">操作</span>
|
|
</template>
|
|
<template #default="scope">
|
|
<el-button icon="Delete" link type="danger" @click="handleDelete([scope.row.id])"> 删除 </el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<template #empty>
|
|
<el-empty description="暂无数据" :image-size="120">
|
|
<el-button type="primary" icon="FolderAdd" @click="formDialogRef.openDialog()">新增记录</el-button>
|
|
</el-empty>
|
|
</template>
|
|
</el-table>
|
|
|
|
<!-- 分页 -->
|
|
<div class="pagination-wrapper">
|
|
<pagination @size-change="sizeChangeHandle" @current-change="currentChangeHandle" v-bind="state.pagination" />
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
|
|
<!-- 编辑、新增 -->
|
|
<FormDialog ref="formDialogRef" @refresh="getDataList(false)" />
|
|
|
|
<!-- 导入对话框 -->
|
|
<upload-excel
|
|
ref="uploadExcelRef"
|
|
:title="'导入日常巡检'"
|
|
:url="'/stuwork/classcheckdaily/import'"
|
|
:temp-url="templateUrl"
|
|
@refreshDataList="getDataList"
|
|
/>
|
|
|
|
<!-- 学期统计对话框 -->
|
|
<el-dialog title="学期统计" v-model="rankDialogVisible" :close-on-click-modal="false" draggable width="800px">
|
|
<el-form :inline="true" :model="rankForm">
|
|
<el-form-item label="学年">
|
|
<el-select v-model="rankForm.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="学期">
|
|
<el-input v-model="rankForm.schoolTerm" placeholder="请输入学期" clearable style="width: 200px" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="Search" @click="getRankData">查询</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table :data="rankData" v-loading="rankLoading" border style="margin-top: 20px">
|
|
<el-table-column type="index" label="序号" align="center" />
|
|
<el-table-column prop="deptName" label="学院" show-overflow-tooltip />
|
|
<el-table-column prop="classNo" label="班号" show-overflow-tooltip />
|
|
<el-table-column prop="totalScore" label="总分数" show-overflow-tooltip />
|
|
<el-table-column prop="count" label="记录数" show-overflow-tooltip />
|
|
</el-table>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click="rankDialogVisible = false">关 闭</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="ClassCheckDaily">
|
|
import { ref, reactive, defineAsyncComponent, computed, onMounted } from 'vue';
|
|
import { BasicTableProps, useTable } from '/@/hooks/table';
|
|
import { fetchList, delObjs, exportData, getRank } from '/@/api/stuwork/classcheckdaily';
|
|
import { makeExportClassCheckDailyTask } from '/@/api/stuwork/file';
|
|
import { useMessage, useMessageBox } from '/@/hooks/message';
|
|
import { getDeptList } from '/@/api/basic/basicclass';
|
|
import { getClassListByRole } from '/@/api/basic/basicclass';
|
|
import { queryAllSchoolYear } from '/@/api/basic/basicyear';
|
|
import TableColumnControl from '/@/components/TableColumnControl/index.vue';
|
|
import {
|
|
List,
|
|
OfficeBuilding,
|
|
Grid,
|
|
Avatar,
|
|
Calendar,
|
|
DataAnalysis,
|
|
Document,
|
|
CircleCheck,
|
|
Setting,
|
|
Menu,
|
|
Search,
|
|
Document as DocIcon,
|
|
FolderAdd,
|
|
Download,
|
|
} from '@element-plus/icons-vue';
|
|
import { useTableColumnControl } from '/@/hooks/tableColumn';
|
|
|
|
// 引入组件
|
|
const FormDialog = defineAsyncComponent(() => import('./form.vue'));
|
|
const UploadExcel = defineAsyncComponent(() => import('/@/components/Upload/Excel.vue'));
|
|
|
|
// 定义变量内容
|
|
const formDialogRef = ref();
|
|
const searchFormRef = ref();
|
|
const columnControlRef = ref();
|
|
const uploadExcelRef = ref();
|
|
const showSearch = ref(true);
|
|
const deptList = ref<any[]>([]);
|
|
const classList = ref<any[]>([]);
|
|
const schoolYearList = ref<any[]>([]);
|
|
// 模板文件URL
|
|
const templateUrl = ref('/stuwork/classcheckdaily/importTemplate');
|
|
|
|
// 表格列配置
|
|
const tableColumns = [
|
|
{ prop: 'deptName', label: '学院', icon: OfficeBuilding },
|
|
{ prop: 'classNo', label: '班号', icon: Grid },
|
|
{ prop: 'realName', label: '学生', icon: Avatar },
|
|
{ prop: 'recordTime', label: '记录时间', icon: Calendar },
|
|
{ prop: 'score', label: '分数', icon: DataAnalysis },
|
|
{ prop: 'note', label: '检查记录', icon: Document },
|
|
{ prop: 'handleResult', label: '处理结果', icon: CircleCheck },
|
|
];
|
|
|
|
// 使用表格列控制 Hook
|
|
const { visibleColumns, visibleColumnsSorted, checkColumnVisible, handleColumnChange, handleColumnOrderChange } = useTableColumnControl(tableColumns);
|
|
|
|
// 搜索表单
|
|
const searchForm = reactive({
|
|
schoolYear: '',
|
|
schoolTerm: '',
|
|
deptCode: '',
|
|
classCode: '',
|
|
realName: '',
|
|
});
|
|
|
|
// 根据学院筛选班级列表
|
|
const filteredClassList = computed(() => {
|
|
if (!searchForm.deptCode) {
|
|
return classList.value;
|
|
}
|
|
return classList.value.filter((item: any) => item.deptCode === searchForm.deptCode);
|
|
});
|
|
|
|
// 配置 useTable
|
|
const state: BasicTableProps = reactive<BasicTableProps>({
|
|
queryForm: searchForm,
|
|
pageList: fetchList,
|
|
props: {
|
|
item: 'records',
|
|
totalCount: 'total',
|
|
},
|
|
});
|
|
|
|
// table hook
|
|
const { getDataList, currentChangeHandle, sizeChangeHandle, sortChangeHandle, downBlobFile, tableStyle } = useTable(state);
|
|
|
|
// 学期统计相关
|
|
const rankDialogVisible = ref(false);
|
|
const rankLoading = ref(false);
|
|
const rankData = ref<any[]>([]);
|
|
const rankForm = reactive({
|
|
schoolYear: '',
|
|
schoolTerm: '',
|
|
});
|
|
|
|
// 学院选择变化
|
|
const handleDeptChange = () => {
|
|
searchForm.classCode = '';
|
|
};
|
|
|
|
// 查询
|
|
const handleSearch = () => {
|
|
getDataList();
|
|
};
|
|
|
|
// 重置
|
|
const handleReset = () => {
|
|
searchFormRef.value?.resetFields();
|
|
searchForm.schoolYear = '';
|
|
searchForm.schoolTerm = '';
|
|
searchForm.deptCode = '';
|
|
searchForm.classCode = '';
|
|
searchForm.realName = '';
|
|
getDataList();
|
|
};
|
|
|
|
// 删除
|
|
const handleDelete = async (ids: string[]) => {
|
|
try {
|
|
await useMessageBox().confirm('确定要删除选中的记录吗?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning',
|
|
});
|
|
} catch {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await delObjs(ids);
|
|
useMessage().success('删除成功');
|
|
getDataList();
|
|
} catch (err: any) {
|
|
useMessage().error(err.msg || '删除失败');
|
|
}
|
|
};
|
|
|
|
// 导出
|
|
const handleExport = async () => {
|
|
try {
|
|
await makeExportClassCheckDailyTask(searchForm);
|
|
useMessage().success('导出任务已创建,请在文件管理中下载');
|
|
} catch (err: any) {
|
|
useMessage().error(err.msg || '导出失败');
|
|
}
|
|
};
|
|
|
|
// 导入
|
|
const handleImport = () => {
|
|
if (uploadExcelRef.value) {
|
|
uploadExcelRef.value.show();
|
|
}
|
|
};
|
|
|
|
// 打开学期统计对话框
|
|
const handleRank = () => {
|
|
rankDialogVisible.value = true;
|
|
rankForm.schoolYear = '';
|
|
rankForm.schoolTerm = '';
|
|
rankData.value = [];
|
|
};
|
|
|
|
// 获取学期统计数据
|
|
const getRankData = async () => {
|
|
if (!rankForm.schoolYear || !rankForm.schoolTerm) {
|
|
useMessage().warning('请选择学年和学期');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
rankLoading.value = true;
|
|
const res = await getRank({
|
|
schoolYear: rankForm.schoolYear,
|
|
schoolTerm: rankForm.schoolTerm,
|
|
});
|
|
if (res.data) {
|
|
rankData.value = Array.isArray(res.data) ? res.data : [];
|
|
} else {
|
|
rankData.value = [];
|
|
}
|
|
} catch (err: any) {
|
|
useMessage().error(err.msg || '获取统计数据失败');
|
|
rankData.value = [];
|
|
} finally {
|
|
rankLoading.value = false;
|
|
}
|
|
};
|
|
|
|
// 获取学院列表
|
|
const getDeptListData = async () => {
|
|
try {
|
|
const res = await getDeptList();
|
|
if (res.data) {
|
|
deptList.value = Array.isArray(res.data) ? res.data : [];
|
|
}
|
|
} catch (err) {
|
|
deptList.value = [];
|
|
}
|
|
};
|
|
|
|
// 获取班号列表
|
|
const getClassListData = async () => {
|
|
try {
|
|
const res = await getClassListByRole();
|
|
if (res.data) {
|
|
classList.value = Array.isArray(res.data) ? res.data : [];
|
|
}
|
|
} catch (err) {
|
|
classList.value = [];
|
|
}
|
|
};
|
|
|
|
// 获取学年列表
|
|
const getSchoolYearList = async () => {
|
|
try {
|
|
const res = await queryAllSchoolYear();
|
|
if (res.data) {
|
|
schoolYearList.value = Array.isArray(res.data) ? res.data : [];
|
|
}
|
|
} catch (err) {
|
|
schoolYearList.value = [];
|
|
}
|
|
};
|
|
|
|
// 初始化
|
|
onMounted(() => {
|
|
getDeptListData();
|
|
getClassListData();
|
|
getSchoolYearList();
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '/@/assets/styles/modern-page.scss';
|
|
</style>
|