Files
school-developer/src/views/stuwork/dormreform/index.vue
2026-01-22 13:38:10 +08:00

529 lines
16 KiB
Vue

<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="buildingNo">
<el-select
v-model="searchForm.buildingNo"
placeholder="请选择楼号"
clearable
filterable
style="width: 200px"
@change="handleBuildingChange">
<el-option
v-for="item in buildingList"
:key="item.buildingNo"
:label="item.buildingNo"
:value="item.buildingNo">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="房间号" prop="roomNo">
<el-select
v-model="searchForm.roomNo"
placeholder="请选择房间号"
clearable
filterable
:disabled="!searchForm.buildingNo"
style="width: 200px">
<el-option
v-for="item in filteredRoomList"
:key="item.roomNo"
:label="item.roomNo"
:value="item.roomNo">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="月份" prop="month">
<el-date-picker
v-model="searchForm.month"
type="month"
placeholder="选择月份"
format="YYYY-MM"
value-format="YYYY-MM"
style="width: 200px" />
</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%">
<el-button
icon="FolderAdd"
type="primary"
class="ml10"
@click="formDialogRef.openDialog()">
</el-button>
<el-button
icon="Download"
type="warning"
class="ml10"
@click="handleExport">
</el-button>
<right-toolbar
v-model:showSearch="showSearch"
class="ml10"
style="float: right;"
@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>
</el-row>
<!-- 表格 -->
<el-table
:data="state.dataList"
v-loading="state.loading"
border
:cell-style="tableStyle.cellStyle"
:header-cell-style="tableStyle.headerCellStyle"
@sort-change="sortChangeHandle">
<el-table-column type="index" label="序号" width="60" align="center">
<template #header>
<el-icon><List /></el-icon>
</template>
</el-table-column>
<template v-for="col in sortedTableColumns" :key="col.prop || col.label">
<el-table-column
v-if="checkColumnVisible(col.prop || '') && col.prop !== '操作'"
:prop="col.prop"
:label="col.label"
show-overflow-tooltip
align="center">
<template #header>
<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 === 'reformDate'" #default="scope">
<span>{{ scope.row.reformDate ? scope.row.reformDate.split(' ')[0] : '-' }}</span>
</template>
<!-- 整改结果列特殊模板 -->
<template v-else-if="col.prop === 'reformStatus'" #default="scope">
<StatusTag
:value="scope.row.reformStatus"
:options="[{ label: '合格', value: '合格' }, { label: '不合格', value: '不合格' }, { label: '未整改', value: '未整改' }]"
:type-map="{ '合格': { type: 'success', effect: 'light' }, '不合格': { type: 'danger', effect: 'light' }, '未整改': { type: 'warning', effect: 'light' } }"
/>
</template>
</el-table-column>
</template>
<el-table-column label="操作" width="350" align="center" fixed="right">
<template #header>
<el-icon><Setting /></el-icon>
<span style="margin-left: 4px">操作</span>
</template>
<template #default="scope">
<el-button
text
type="success"
@click="handleSetStatus(scope.row, '合格')"
:disabled="isStatusDisabled(scope.row.reformStatus, '合格')">
合格
</el-button>
<el-button
text
type="danger"
@click="handleSetStatus(scope.row, '不合格')"
:disabled="isStatusDisabled(scope.row.reformStatus, '不合格')">
不合格
</el-button>
<el-button
text
type="warning"
@click="handleSetStatus(scope.row, '未整改')"
:disabled="isStatusDisabled(scope.row.reformStatus, '未整改')">
未整改
</el-button>
<el-button
icon="Edit"
text
type="primary"
@click="handleEdit(scope.row)">
编辑
</el-button>
<el-button
icon="Delete"
text
type="danger"
@click="handleDelete(scope.row)">
删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
v-bind="state.pagination" />
</div>
<!-- 编辑新增 -->
<FormDialog ref="formDialogRef" @refresh="getDataList(false)" />
</div>
</template>
<script setup lang="ts" name="DormHygieneMonthly">
import { ref, reactive, defineAsyncComponent, computed, onMounted, nextTick } from 'vue'
import { useRoute } from 'vue-router'
import { BasicTableProps, useTable } from "/@/hooks/table";
import { fetchList, putObj, delObjs } from "/@/api/stuwork/dormreform";
import { getBuildingList } from "/@/api/stuwork/dormbuilding";
import { getDormRoomDataByBuildingNo } from "/@/api/stuwork/dormroom";
import { useMessage, useMessageBox } from "/@/hooks/message";
import { getDicts } from "/@/api/admin/dict";
import { downBlobFile, adaptationUrl } from "/@/utils/other";
import TableColumnControl from '/@/components/TableColumnControl/index.vue'
// 引入组件
const FormDialog = defineAsyncComponent(() => import('./form.vue'));
import { List, OfficeBuilding, Grid, House, Calendar, Document, CircleCheck, EditPen, Setting, Menu } from '@element-plus/icons-vue'
import { defineAsyncComponent as defineStatusTag } from 'vue'
const StatusTag = defineStatusTag(() => import('/@/components/StatusTag/index.vue'))
// 定义变量内容
const route = useRoute()
const formDialogRef = ref()
const columnControlRef = ref<any>()
const searchFormRef = ref()
const showSearch = ref(true)
const buildingList = ref<any[]>([])
const roomList = ref<any[]>([])
const reformStatusDict = ref<any[]>([])
// 表格列配置
const tableColumns = [
{ prop: 'deptName', label: '学院' },
{ prop: 'classNos', label: '班级' },
{ prop: 'roomNo', label: '房间号' },
{ prop: 'reformDate', label: '整改时间' },
{ prop: 'reformContent', label: '整改内容' },
{ prop: 'reformStatus', label: '整改结果' },
{ prop: 'remarks', label: '关联扣分明细' }
]
// 列配置映射(用于图标)
const columnConfigMap: Record<string, { icon: any }> = {
deptName: { icon: OfficeBuilding },
classNos: { icon: Grid },
roomNo: { icon: House },
reformDate: { icon: Calendar },
reformContent: { icon: Document },
reformStatus: { icon: CircleCheck },
remarks: { icon: EditPen }
}
// 当前显示的列
const visibleColumns = ref<string[]>([])
// 列排序顺序
const columnOrder = ref<string[]>([])
// 立即从 localStorage 加载配置
const loadSavedConfig = () => {
const routePath = route.path.replace(/^\//, '').replace(/\//g, '-')
const storageKey = `table-columns-${routePath}`
const saved = localStorage.getItem(storageKey)
if (saved) {
try {
const savedColumns = JSON.parse(saved)
const validColumns = tableColumns.map(col => col.prop || col.label)
const filteredSaved = savedColumns.filter((col: string) => validColumns.includes(col))
visibleColumns.value = filteredSaved.length > 0 ? filteredSaved : validColumns
} catch (e) {
visibleColumns.value = tableColumns.map(col => col.prop || col.label)
}
} else {
visibleColumns.value = tableColumns.map(col => col.prop || col.label)
}
const orderKey = `${storageKey}-order`
const savedOrder = localStorage.getItem(orderKey)
if (savedOrder) {
try {
const parsedOrder = JSON.parse(savedOrder)
const validColumns = tableColumns.map(col => col.prop || col.label)
columnOrder.value = parsedOrder.filter((key: string) => validColumns.includes(key))
validColumns.forEach(key => {
if (!columnOrder.value.includes(key)) {
columnOrder.value.push(key)
}
})
} catch (e) {
columnOrder.value = tableColumns.map(col => col.prop || col.label)
}
} else {
columnOrder.value = tableColumns.map(col => col.prop || col.label)
}
}
loadSavedConfig()
// 排序后的表格列
const sortedTableColumns = computed(() => {
const columns = tableColumns.filter(col => {
const key = col.prop || col.label
return visibleColumns.value.includes(key)
})
if (columnOrder.value.length > 0) {
const orderedColumns: typeof tableColumns = []
const unorderedColumns: typeof tableColumns = []
columnOrder.value.forEach(key => {
const col = columns.find(c => (c.prop || c.label) === key)
if (col) {
orderedColumns.push(col)
}
})
columns.forEach(col => {
const key = col.prop || col.label
if (!columnOrder.value.includes(key)) {
unorderedColumns.push(col)
}
})
return [...orderedColumns, ...unorderedColumns]
}
return columns
})
// 列显示控制函数
const checkColumnVisible = (prop: string): boolean => {
if (visibleColumns.value.length === 0) {
return true
}
return visibleColumns.value.includes(prop)
}
// 监听列变化
const handleColumnChange = (columns: string[]) => {
visibleColumns.value = columns
const routePath = route.path.replace(/^\//, '').replace(/\//g, '-')
const storageKey = `table-columns-${routePath}`
const selectableColumns = columns.filter(col => {
const column = tableColumns.find(c => (c.prop || c.label) === col)
return column && !column.alwaysShow && !column.fixed
})
localStorage.setItem(storageKey, JSON.stringify(selectableColumns))
}
// 监听列排序变化
const handleColumnOrderChange = (order: string[]) => {
columnOrder.value = order
const routePath = route.path.replace(/^\//, '').replace(/\//g, '-')
const storageKey = `table-columns-${routePath}-order`
localStorage.setItem(storageKey, JSON.stringify(order))
}
// 搜索表单
const searchForm = reactive({
buildingNo: '',
roomNo: '',
month: ''
})
// 根据楼号筛选房间列表
const filteredRoomList = computed(() => {
if (!searchForm.buildingNo) {
return []
}
return roomList.value.filter((item: any) => item.buildingNo === searchForm.buildingNo)
})
// 配置 useTable
const state: BasicTableProps = reactive<BasicTableProps>({
queryForm: searchForm,
pageList: fetchList,
props: {
item: 'records',
totalCount: 'total'
},
createdIsNeed: true
})
// table hook
const {
getDataList,
currentChangeHandle,
sizeChangeHandle,
sortChangeHandle,
tableStyle
} = useTable(state)
// 楼号选择变化
const handleBuildingChange = () => {
// 清空房间号选择
searchForm.roomNo = ''
// 重新加载房间列表
if (searchForm.buildingNo) {
getRoomListData(searchForm.buildingNo)
} else {
roomList.value = []
}
}
// 查询
const handleSearch = () => {
getDataList()
}
// 重置
const handleReset = () => {
searchFormRef.value?.formRef?.resetFields()
searchForm.buildingNo = ''
searchForm.roomNo = ''
searchForm.month = ''
getDataList()
}
// 判断状态按钮是否禁用
const isStatusDisabled = (currentStatus: string | number, targetStatus: string) => {
if (!currentStatus) return false
const currentDictItem = reformStatusDict.value.find(item => item.value == currentStatus)
const currentLabel = currentDictItem ? currentDictItem.label : currentStatus
return currentLabel === targetStatus
}
// 设置整改状态
const handleSetStatus = async (row: any, status: string) => {
try {
// 根据字典值设置整改状态
const statusValue = reformStatusDict.value.find(item => item.label === status)?.value
if (!statusValue) {
useMessage().error('未找到对应的整改状态')
return
}
await putObj({
id: row.id,
roomNo: row.roomNo,
reformDate: row.reformDate ? row.reformDate.split(' ')[0] : row.reformDate,
reformContent: row.reformContent,
reformStatus: statusValue
})
useMessage().success('设置成功')
getDataList()
} catch (err: any) {
useMessage().error(err.msg || '设置失败')
}
}
// 编辑
const handleEdit = (row: any) => {
if (formDialogRef.value) {
formDialogRef.value.openDialog('edit', row)
}
}
// 删除
const handleDelete = async (row: any) => {
try {
await useMessageBox().confirm('确定要删除该记录吗?')
await delObjs([row.id])
useMessage().success('删除成功')
getDataList()
} catch (err: any) {
if (err !== 'cancel') {
useMessage().error(err.msg || '删除失败')
}
}
}
// 导出
const handleExport = () => {
downBlobFile(adaptationUrl('/stuwork/dormreform/export'), searchForm, '月卫生检查整改.xlsx')
}
// 格式化整改结果
const formatReformStatus = (value: string | number) => {
if (value === null || value === undefined || value === '') {
return '-'
}
const dictItem = reformStatusDict.value.find(item => item.value == value)
return dictItem ? dictItem.label : value
}
// 获取楼号列表
const getBuildingListData = async () => {
try {
const res = await getBuildingList()
if (res.data) {
buildingList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
buildingList.value = []
}
}
// 根据楼号获取房间列表
const getRoomListData = async (buildingNo: string) => {
if (!buildingNo) {
roomList.value = []
return
}
try {
const res = await getDormRoomDataByBuildingNo({ buildingNo })
if (res.data) {
roomList.value = Array.isArray(res.data) ? res.data : []
}
} catch (err) {
roomList.value = []
}
}
// 获取整改结果字典
const getReformStatusDict = async () => {
try {
const res = await getDicts('reform_status')
if (res.data) {
reformStatusDict.value = Array.isArray(res.data) ? res.data.map((item: any) => ({
label: item.label || item.dictLabel || item.name,
value: item.value || item.dictValue || item.code
})) : []
}
} catch (err) {
reformStatusDict.value = []
}
}
// 初始化
onMounted(() => {
getBuildingListData()
getReformStatusDict()
nextTick(() => {
if (visibleColumns.value.length === 0) {
loadSavedConfig()
}
})
})
</script>