修復打包問題

This commit is contained in:
RISE
2026-01-30 18:02:42 +08:00
parent 3324dbf6dd
commit 02cda4ea1e
27 changed files with 1287 additions and 875 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>
筛选条<EFBFBD><EFBFBD>?
????
</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="请输入姓<EFBFBD><EFBFBD>?
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="列设<EFBFBD><EFBFBD>? 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>
<!-- 学期列特殊模<EFBFBD><EFBFBD>?-->
<!-- ??????? -->
<template v-if="col.prop === 'schoolTerm'" #default="scope">
<el-tag size="small" type="primary" effect="plain">
{{ formatSchoolTerm(scope.row.schoolTerm) }}
</el-tag>
</template>
<!-- 类型列特殊模<EFBFBD><EFBFBD>?-->
<!-- ??????? -->
<template v-else-if="col.prop === 'conductType'" #default="scope">
<el-tag size="small" type="warning" effect="plain">
{{ formatType(scope.row.conductType) }}
</el-tag>
</template>
<!-- 考核时间列特殊模<EFBFBD><EFBFBD>?-->
<!-- ????????? -->
<template v-else-if="col.prop === 'recordDate'" #default="scope">
<span>{{ scope.row.recordDate || '-' }}</span>
</template>
<!-- 附件列特殊模<EFBFBD><EFBFBD>?-->
<!-- ??????? -->
<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">
将文件拖到此处<EFBFBD><EFBFBD>?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"><EFBFBD><EFBFBD>?<EFBFBD><EFBFBD>?/el-button>
<el-button type="primary" @click="handleImportSubmit" :disabled="!importFile || importLoading"><EFBFBD><EFBFBD>?<EFBFBD><EFBFBD>?/el-button>
<el-button @click="importDialogVisible = false">??</el-button>
<el-button type="primary" @click="handleImportSubmit" :disabled="!importFile || importLoading">??</el-button>
</span>
</template>
</el-dialog>
@@ -291,11 +291,11 @@ import { getDicts } from "/@/api/admin/dict";
import { useMessage, useMessageBox } from "/@/hooks/message";
import TableColumnControl from '/@/components/TableColumnControl/index.vue'
import { UploadFilled, List, CreditCard, Calendar, Clock, OfficeBuilding, Grid, Avatar, Collection, Document, Setting, Menu, Search } from '@element-plus/icons-vue'
import { useTableColumnControl } from '/@/hooks/tableColumnControl'
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)
// 表格列配<EFBFBD><EFBFBD>?
// ?????
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 }
]
// 列配置映射用于图标<EFBFBD><EFBFBD>?
// ????????????
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)
// 格式化学<EFBFBD><EFBFBD>?
// ?????
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
}
// 格式化类<EFBFBD><EFBFBD>?
// ?????
const formatType = (value: string) => {
if (!value) return '-'
const item = typeList.value.find((item: any) => item.value === value)
return item ? item.label : value
}
// 学院变化
// ????
const handleDeptChange = () => {
// 可以根据学院筛选班级这里暂时不实<EFBFBD><EFBFBD>?
// ??????????????????
}
// 重置
// ??
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 () => {
}
}
// 初始<EFBFBD><EFBFBD>?
// ???
onMounted(() => {
getSchoolYearList()
getSchoolTermDict()