修复文件问题 修改bug

This commit is contained in:
2026-02-06 00:04:33 +08:00
parent 779b779910
commit de2d64210f
18 changed files with 1712 additions and 894 deletions

View File

@@ -1,21 +1,21 @@
<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="state.queryForm" ref="searchFormRef" :inline="true" @keyup.enter="getDataList" class="search-form">
<el-form-item label="??" prop="schoolYear">
<el-form-item label="学年" prop="schoolYear">
<el-select
v-model="state.queryForm.schoolYear"
placeholder="?????"
placeholder="请选择学年"
clearable
filterable
style="width: 200px">
@@ -27,10 +27,10 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="??" prop="schoolTerm">
<el-form-item label="学期" prop="schoolTerm">
<el-select
v-model="state.queryForm.schoolTerm"
placeholder="?????"
placeholder="请选择学期"
clearable
style="width: 200px">
<el-option
@@ -41,10 +41,10 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="??" prop="deptCode">
<el-form-item label="学院" prop="deptCode">
<el-select
v-model="state.queryForm.deptCode"
placeholder="?????"
placeholder="请选择学院"
clearable
filterable
style="width: 200px"
@@ -57,10 +57,10 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="??" prop="classCode">
<el-form-item label="班级" prop="classCode">
<el-select
v-model="state.queryForm.classCode"
placeholder="?????"
placeholder="请选择班级"
clearable
filterable
style="width: 200px">
@@ -72,17 +72,17 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="??" prop="realName">
<el-form-item label="姓名" prop="realName">
<el-input
v-model="state.queryForm.realName"
placeholder="?????"
placeholder="请输入姓名"
clearable
style="width: 200px" />
</el-form-item>
<el-form-item label="??" prop="conductType">
<el-form-item label="类型" prop="conductType">
<el-select
v-model="state.queryForm.conductType"
placeholder="?????"
placeholder="请选择类型"
clearable
style="width: 200px">
<el-option
@@ -94,33 +94,33 @@
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" plain icon="Search" @click="getDataList">??</el-button>
<el-button icon="Refresh" @click="handleReset">??</el-button>
<el-button type="primary" plain icon="Search" @click="getDataList">查询</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="Plus"
type="primary"
@click="formDialogRef.openDialog()">
??
新增
</el-button>
<el-button
icon="Upload"
type="success"
class="ml10"
@click="handleImport">
??
导入
</el-button>
<right-toolbar
v-model:showSearch="showSearch"
@@ -136,7 +136,7 @@
@order-change="handleColumnOrderChange"
>
<template #trigger>
<el-tooltip class="item" effect="dark" content="???" placement="top">
<el-tooltip class="item" effect="dark" content="列设置" placement="top">
<el-button circle style="margin-left: 0;">
<el-icon><Menu /></el-icon>
</el-button>
@@ -148,7 +148,7 @@
</div>
</template>
<!-- ?? -->
<!-- 表格 -->
<el-table
:data="state.dataList"
v-loading="state.loading"
@@ -156,7 +156,7 @@
:cell-style="tableStyle.cellStyle"
:header-cell-style="tableStyle.headerCellStyle"
class="modern-table">
<el-table-column type="index" label="??" width="70" align="center">
<el-table-column type="index" label="序号" width="70" align="center">
<template #header>
<el-icon><List /></el-icon>
</template>
@@ -166,7 +166,7 @@
</el-table-column>
<template v-for="col in visibleColumnsSorted" :key="col.prop || col.label">
<el-table-column
v-if="checkColumnVisible(col.prop || '') && col.prop !== '??'"
v-if="checkColumnVisible(col.prop || '') && col.prop !== '序号'"
:prop="col.prop"
:label="col.label"
show-overflow-tooltip
@@ -177,23 +177,23 @@
<el-icon><component :is="columnConfigMap[col.prop]?.icon || Calendar" /></el-icon>
<span style="margin-left: 4px">{{ col.label }}</span>
</template>
<!-- ??????? -->
<!-- 学期格式化 -->
<template v-if="col.prop === 'schoolTerm'" #default="scope">
<el-tag size="small" type="primary" effect="plain">
{{ formatSchoolTerm(scope.row.schoolTerm) }}
</el-tag>
</template>
<!-- ??????? -->
<!-- 类型格式化 -->
<template v-else-if="col.prop === 'conductType'" #default="scope">
<el-tag size="small" type="warning" effect="plain">
{{ formatType(scope.row.conductType) }}
</el-tag>
</template>
<!-- ????????? -->
<!-- 记录日期格式化 -->
<template v-else-if="col.prop === 'recordDate'" #default="scope">
<span>{{ scope.row.recordDate || '-' }}</span>
</template>
<!-- ??????? -->
<!-- 附件格式化 -->
<template v-else-if="col.prop === 'attachment'" #default="scope">
<el-button
v-if="scope.row.attachment"
@@ -202,16 +202,16 @@
type="primary"
size="small"
@click="handleViewAttachment(scope.row)">
??
查看
</el-button>
<span v-else>-</span>
</template>
</el-table-column>
</template>
<el-table-column label="??" width="150" align="center" fixed="right">
<el-table-column label="操作" width="150" align="center" fixed="right">
<template #header>
<el-icon><Setting /></el-icon>
<span style="margin-left: 4px">??</span>
<span style="margin-left: 4px">操作</span>
</template>
<template #default="scope">
<el-button
@@ -219,20 +219,20 @@
link
type="primary"
@click="handleEdit(scope.row)">
??
编辑
</el-button>
<el-button
icon="Delete"
link
type="danger"
@click="handleDelete(scope.row)">
??
删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- ?? -->
<!-- 分页 -->
<div class="pagination-wrapper">
<pagination
@size-change="sizeChangeHandle"
@@ -242,12 +242,12 @@
</el-card>
</div>
<!-- ??/?????? -->
<!-- 新增/编辑对话框 -->
<form-dialog ref="formDialogRef" @refresh="getDataList" />
<!-- ???? -->
<!-- 导入对话框 -->
<el-dialog
title="??????"
title="导入数据"
v-model="importDialogVisible"
:width="500"
:close-on-click-modal="false"
@@ -261,18 +261,18 @@
drag>
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
<div class="el-upload__text">
????????<em>????</em>
将文件拖到此处<em>点击上传</em>
</div>
<template #tip>
<div class="el-upload__tip">
???? xlsx/xls ??
只能上传 xlsx/xls 文件
</div>
</template>
</el-upload>
<template #footer>
<span class="dialog-footer">
<el-button @click="importDialogVisible = false">??</el-button>
<el-button type="primary" @click="handleImportSubmit" :disabled="!importFile || importLoading">??</el-button>
<el-button @click="importDialogVisible = false">取消</el-button>
<el-button type="primary" @click="handleImportSubmit" :disabled="!importFile || importLoading">确认</el-button>
</span>
</template>
</el-dialog>
@@ -295,7 +295,7 @@ import { useTableColumnControl } from '/@/hooks/tableColumn'
import FormDialog from './form.vue'
// ??????
// 定义变量
const route = useRoute()
const formDialogRef = ref()
const columnControlRef = ref<any>()
@@ -311,21 +311,21 @@ const importDialogVisible = ref(false)
const importFile = ref<File | null>(null)
const importLoading = ref(false)
// ?????
// 表格列配置
const tableColumns = [
{ prop: 'stuNo', label: '??' },
{ prop: 'schoolYear', label: '??' },
{ prop: 'schoolTerm', label: '??' },
{ prop: 'deptName', label: '??' },
{ prop: 'classNo', label: '??' },
{ prop: 'realName', label: '??' },
{ prop: 'conductType', label: '??' },
{ prop: 'recordDate', label: '????', width: 120 },
{ prop: 'description', label: '????', minWidth: 150 },
{ prop: 'attachment', label: '??', width: 100 }
{ prop: 'stuNo', label: '学号' },
{ prop: 'schoolYear', label: '学年' },
{ prop: 'schoolTerm', label: '学期' },
{ prop: 'deptName', label: '学院' },
{ prop: 'classNo', label: '班级' },
{ prop: 'realName', label: '姓名' },
{ prop: 'conductType', label: '类型' },
{ prop: 'recordDate', label: '记录日期', width: 120 },
{ prop: 'description', label: '描述说明', minWidth: 150 },
{ prop: 'attachment', label: '附件', width: 100 }
]
// ????????????
// 列配置映射
const columnConfigMap: Record<string, { icon: any }> = {
stuNo: { icon: CreditCard },
schoolYear: { icon: Calendar },
@@ -339,7 +339,7 @@ const columnConfigMap: Record<string, { icon: any }> = {
attachment: { icon: Document }
}
// ???????hook
// 表格列控制hook
const {
visibleColumns,
visibleColumnsSorted,
@@ -348,7 +348,7 @@ const {
handleColumnOrderChange
} = useTableColumnControl(tableColumns, route.path)
// ?? useTable
// 使用 useTable
const state: BasicTableProps = reactive<BasicTableProps>({
queryForm: {
schoolYear: '',
@@ -374,7 +374,7 @@ const {
tableStyle
} = useTable(state)
// ?????
// 格式化学期
const formatSchoolTerm = (value: string | number) => {
if (value === null || value === undefined || value === '') {
return '-'
@@ -383,19 +383,19 @@ const formatSchoolTerm = (value: string | number) => {
return dictItem ? dictItem.label : value
}
// ?????
// 格式化类型
const formatType = (value: string) => {
if (!value) return '-'
const item = typeList.value.find((item: any) => item.value === value)
return item ? item.label : value
}
// ????
// 学院变化
const handleDeptChange = () => {
// ??????????????????
// 学院变化时清空班级选择
}
// ??
// 重置
const handleReset = () => {
searchFormRef.value?.resetFields()
state.queryForm.schoolYear = ''
@@ -407,7 +407,7 @@ const handleReset = () => {
getDataList()
}
// ????
// 查看附件
const handleViewAttachment = (row: any) => {
if (row.attachment) {
const urls = typeof row.attachment === 'string' ? row.attachment.split(',') : [row.attachment]
@@ -419,61 +419,61 @@ const handleViewAttachment = (row: any) => {
}
}
// ??
// 导入
const handleImport = () => {
importDialogVisible.value = true
importFile.value = null
uploadRef.value?.clearFiles()
}
// ????
// 文件变化
const handleFileChange = (file: any) => {
importFile.value = file.raw
}
// ????
// 提交导入
const handleImportSubmit = async () => {
if (!importFile.value) {
useMessage().warning('?????????')
useMessage().warning('请先选择要上传的文件')
return
}
importLoading.value = true
try {
await importExcel(importFile.value)
useMessage().success('????')
useMessage().success('导入成功')
importDialogVisible.value = false
importFile.value = null
uploadRef.value?.clearFiles()
getDataList()
} catch (err: any) {
useMessage().error(err.msg || '????')
useMessage().error(err.msg || '导入失败')
} finally {
importLoading.value = false
}
}
// ??
// 编辑
const handleEdit = (row: any) => {
formDialogRef.value?.openDialog('edit', row)
}
// ??
// 删除
const handleDelete = async (row: any) => {
const { confirm } = useMessageBox()
try {
await confirm('??????????????')
await confirm('确定要删除该记录吗?')
await delObj([row.id])
useMessage().success('????')
useMessage().success('删除成功')
getDataList()
} catch (err: any) {
if (err !== 'cancel') {
useMessage().error(err.msg || '????')
useMessage().error(err.msg || '删除失败')
}
}
}
// ??????
// 获取学年列表
const getSchoolYearList = async () => {
try {
const res = await queryAllSchoolYear()
@@ -487,7 +487,7 @@ const getSchoolYearList = async () => {
}
}
// ??????
// 获取学期字典
const getSchoolTermDict = async () => {
try {
const res = await getDicts('school_term')
@@ -504,7 +504,7 @@ const getSchoolTermDict = async () => {
}
}
// ??????
// 获取学院列表
const getDeptListData = async () => {
try {
const res = await getDeptList()
@@ -518,7 +518,7 @@ const getDeptListData = async () => {
}
}
// ??????
// 获取班级列表
const getClassListData = async () => {
try {
const res = await getClassListByRole()
@@ -532,7 +532,7 @@ const getClassListData = async () => {
}
}
// ??????
// 获取类型字典
const getTypeDict = async () => {
try {
const res = await getDicts('conduct_type')
@@ -549,7 +549,7 @@ const getTypeDict = async () => {
}
}
// ???
// 初始化
onMounted(() => {
getSchoolYearList()
getSchoolTermDict()