This commit is contained in:
2026-01-15 01:15:07 +08:00
parent 8c1f4ec05e
commit 90b646297d
45 changed files with 62864 additions and 5820 deletions

View File

@@ -0,0 +1,287 @@
<template>
<div class="layout-padding">
<div class="layout-padding-auto layout-padding-view">
<!-- 搜索表单 -->
<el-row v-show="showSearch">
<el-form :model="searchForm" ref="searchFormRef" :inline="true" @keyup.enter="handleSearch">
<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 classList"
:key="item.classCode"
:label="item.classNo"
:value="item.classCode">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="来源" prop="source">
<el-select
v-model="searchForm.source"
placeholder="请选择来源"
clearable
style="width: 200px"
@change="handleSourceChange">
<el-option label="考勤记录" value="history" />
<el-option label="考勤" value="attendance" />
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" plain icon="Search" @click="handleSearch">查询</el-button>
<el-button icon="Refresh" @click="handleReset">重置</el-button>
</el-form-item>
</el-form>
</el-row>
<!-- 操作按钮 -->
<el-row>
<div class="mb8" style="width: 100%">
<right-toolbar
v-model:showSearch="showSearch"
class="ml10 mr20"
style="float: right;"
@queryTable="getDataList">
</right-toolbar>
</div>
</el-row>
<!-- 表格 -->
<el-table
:data="state.dataList"
v-loading="state.loading"
border
:cell-style="tableStyle.cellStyle"
:header-cell-style="tableStyle.headerCellStyle">
<el-table-column type="index" label="序号" width="60" align="center" />
<el-table-column prop="schoolYear" label="学年" show-overflow-tooltip align="center" />
<el-table-column prop="schoolTerm" label="学期" show-overflow-tooltip align="center" />
<el-table-column prop="deptName" label="系部名称" show-overflow-tooltip align="center" />
<el-table-column prop="classCode" label="班级代码" show-overflow-tooltip align="center" />
<el-table-column prop="classNo" label="班级简称" show-overflow-tooltip align="center" />
<el-table-column prop="classProName" label="班级规范名称" show-overflow-tooltip align="center" min-width="200" />
<el-table-column prop="stuNo" label="学号" show-overflow-tooltip align="center" />
<el-table-column prop="realName" label="姓名" show-overflow-tooltip align="center" />
<el-table-column prop="attendanceType" label="考勤类型" show-overflow-tooltip align="center">
<template #default="scope">
<span>{{ formatAttendanceType(scope.row.attendanceType) }}</span>
</template>
</el-table-column>
<el-table-column
v-if="showRemarks"
prop="remarks"
label="落实情况"
show-overflow-tooltip
align="center"
min-width="150">
<template #default="scope">
<span>{{ scope.row.remarks || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="150" align="center" fixed="right">
<template #default="scope">
<el-button
icon="View"
text
type="primary"
@click="handleView(scope.row)">
查看详情
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
v-bind="state.pagination" />
</div>
</div>
</template>
<script setup lang="ts" name="WorkStudyAttendance">
import { reactive, ref, onMounted } from 'vue'
import { BasicTableProps, useTable } from "/@/hooks/table";
import { fetchList, queryHistoryList } from "/@/api/stuwork/workstudyattendance";
import { getDeptList } from "/@/api/basic/basicclass";
import { getClassListByRole } from "/@/api/basic/basicclass";
import { useMessage } from "/@/hooks/message";
// 定义变量内容
const searchFormRef = ref()
const showSearch = ref(true)
const deptList = ref<any[]>([])
const classList = ref<any[]>([])
const showRemarks = ref(false) // 控制落实情况列的显示
// 搜索表单
const searchForm = reactive({
deptCode: '',
classCode: '',
source: '' // 来源选择:考勤记录、考勤
})
// 配置 useTable
const state: BasicTableProps = reactive<BasicTableProps>({
queryForm: searchForm,
pageList: fetchList,
props: {
item: 'tableData.records',
totalCount: 'tableData.total'
},
createdIsNeed: true
})
// table hook
const {
getDataList,
currentChangeHandle,
sizeChangeHandle,
tableStyle
} = useTable(state)
// 格式化考勤类型
const formatAttendanceType = (value: string | number) => {
if (value === '1' || value === 1) return '到岗'
if (value === '2' || value === 2) return '未到岗'
if (value === '3' || value === 3) return '请假'
return '-'
}
// 学院变化时更新班级列表
const handleDeptChange = () => {
searchForm.classCode = ''
getClassListData()
}
// 来源选择变化
const handleSourceChange = async (value: string) => {
if (value === 'history') {
// 选择考勤记录时,显示落实情况列
showRemarks.value = true
// 查询考勤记录(不强制要求学院和班级)
try {
state.loading = true
const params: any = {}
if (searchForm.deptCode) {
params.deptCode = searchForm.deptCode
}
if (searchForm.classCode) {
params.classCode = searchForm.classCode
}
const res = await queryHistoryList(params)
if (res.data && Array.isArray(res.data)) {
state.dataList = res.data
if (state.pagination) {
state.pagination.total = res.data.length
}
} else {
state.dataList = []
if (state.pagination) {
state.pagination.total = 0
}
}
} catch (err: any) {
useMessage().error(err.msg || '查询考勤记录失败')
state.dataList = []
if (state.pagination) {
state.pagination.total = 0
}
} finally {
state.loading = false
}
} else if (value === 'attendance') {
// 选择考勤时,不显示落实情况列,使用普通列表接口
showRemarks.value = false
getDataList()
} else {
// 清空选择时,不显示落实情况列
showRemarks.value = false
getDataList()
}
}
// 查询
const handleSearch = () => {
if (searchForm.source === 'history') {
handleSourceChange('history')
} else {
showRemarks.value = false
getDataList()
}
}
// 重置
const handleReset = () => {
searchFormRef.value?.resetFields()
searchForm.deptCode = ''
searchForm.classCode = ''
searchForm.source = ''
showRemarks.value = false
getDataList()
}
// 查看详情
const handleView = (row: any) => {
useMessage().warning('查看详情功能待实现')
console.log('查看详情', row)
}
// 获取学院列表
const getDeptListData = async () => {
try {
const res = await getDeptList()
if (res.data) {
deptList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
console.error('获取学院列表失败', err)
deptList.value = []
}
}
// 获取班级列表
const getClassListData = async () => {
try {
const res = await getClassListByRole()
if (res.data) {
let list = Array.isArray(res.data) ? res.data : []
// 如果选择了学院,过滤班级列表
if (searchForm.deptCode) {
list = list.filter((item: any) => item.deptCode === searchForm.deptCode)
}
classList.value = list
}
} catch (err) {
console.error('获取班级列表失败', err)
classList.value = []
}
}
// 初始化
onMounted(() => {
getDeptListData()
getClassListData()
})
</script>