Files
school-developer/src/views/stuwork/dormreform/index.vue

407 lines
13 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 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"
@sort-change="sortChangeHandle">
<el-table-column type="index" label="序号" width="60" align="center">
<template #header>
<el-icon><List /></el-icon>
</template>
</el-table-column>
<el-table-column prop="deptName" label="学院" show-overflow-tooltip align="center">
<template #header>
<el-icon><OfficeBuilding /></el-icon>
<span style="margin-left: 4px">学院</span>
</template>
</el-table-column>
<el-table-column prop="classNos" label="班级" show-overflow-tooltip align="center">
<template #header>
<el-icon><Grid /></el-icon>
<span style="margin-left: 4px">班级</span>
</template>
</el-table-column>
<el-table-column prop="roomNo" label="房间号" show-overflow-tooltip align="center">
<template #header>
<el-icon><House /></el-icon>
<span style="margin-left: 4px">房间号</span>
</template>
</el-table-column>
<el-table-column prop="reformDate" label="整改时间" show-overflow-tooltip align="center">
<template #header>
<el-icon><Calendar /></el-icon>
<span style="margin-left: 4px">整改时间</span>
</template>
<template #default="scope">
<span>{{ scope.row.reformDate ? scope.row.reformDate.split(' ')[0] : '-' }}</span>
</template>
</el-table-column>
<el-table-column prop="reformContent" label="整改内容" show-overflow-tooltip align="center">
<template #header>
<el-icon><Document /></el-icon>
<span style="margin-left: 4px">整改内容</span>
</template>
</el-table-column>
<el-table-column prop="reformStatus" label="整改结果" show-overflow-tooltip align="center">
<template #header>
<el-icon><CircleCheck /></el-icon>
<span style="margin-left: 4px">整改结果</span>
</template>
<template #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>
<el-table-column prop="remarks" label="关联扣分明细" show-overflow-tooltip align="center">
<template #header>
<el-icon><EditPen /></el-icon>
<span style="margin-left: 4px">关联扣分明细</span>
</template>
</el-table-column>
<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 } from 'vue'
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";
// 引入组件
const FormDialog = defineAsyncComponent(() => import('./form.vue'));
import { List, OfficeBuilding, Grid, House, Calendar, Document, CircleCheck, EditPen, Setting } from '@element-plus/icons-vue'
import { defineAsyncComponent as defineStatusTag } from 'vue'
const StatusTag = defineStatusTag(() => import('/@/components/StatusTag/index.vue'))
// 定义变量内容
const formDialogRef = ref()
const searchFormRef = ref()
const showSearch = ref(true)
const buildingList = ref<any[]>([])
const roomList = ref<any[]>([])
const reformStatusDict = ref<any[]>([])
// 搜索表单
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) {
console.error('获取楼号列表失败', 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) {
console.error('获取房间列表失败', 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) {
console.error('获取整改结果字典失败', err)
reformStatusDict.value = []
}
}
// 初始化
onMounted(() => {
getBuildingListData()
getReformStatusDict()
})
</script>