258 lines
7.8 KiB
Vue
258 lines
7.8 KiB
Vue
<!--
|
|
- Copyright (c) 2018-2025, cyweb All rights reserved.
|
|
-
|
|
- Redistribution and use in source and binary forms, with or without
|
|
- modification, are permitted provided that the following conditions are met:
|
|
-
|
|
- Redistributions of source code must retain the above copyright notice,
|
|
- this list of conditions and the following disclaimer.
|
|
- Redistributions in binary form must reproduce the above copyright
|
|
- notice, this list of conditions and the following disclaimer in the
|
|
- documentation and/or other materials provided with the distribution.
|
|
- Neither the name of the pig4cloud.com developer nor the names of its
|
|
- contributors may be used to endorse or promote products derived from
|
|
- this software without specific prior written permission.
|
|
-
|
|
-->
|
|
|
|
<template>
|
|
<div class="layout-padding">
|
|
<div class="layout-padding-auto layout-padding-view">
|
|
<!-- 搜索表单 -->
|
|
<el-form :model="queryForm" inline ref="searchFormRef">
|
|
<el-form-item label="招生计划" prop="groupId">
|
|
<el-select v-model="queryForm.groupId" filterable clearable placeholder="请选择招生计划">
|
|
<el-option
|
|
v-for="item in planList"
|
|
:key="item.id"
|
|
:label="item.groupName"
|
|
:value="item.id"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="学校名称" prop="schoolName">
|
|
<el-input v-model="queryForm.schoolName" clearable placeholder="学校名称" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" icon="Search" @click="getDataList">查询</el-button>
|
|
<el-button icon="Refresh" class="ml10" @click="resetQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<!-- 操作按钮 -->
|
|
<div class="mb15">
|
|
<el-button
|
|
v-if="permissions.recruit_recruitstudentplangroup_add"
|
|
type="primary"
|
|
icon="FolderAdd"
|
|
@click="addOrUpdateHandle"
|
|
>
|
|
新 增
|
|
</el-button>
|
|
</div>
|
|
|
|
<!-- 表格 -->
|
|
<el-table
|
|
ref="tableRef"
|
|
:data="state.dataList"
|
|
v-loading="state.loading"
|
|
border
|
|
stripe
|
|
:cell-style="tableStyle.cellStyle"
|
|
:header-cell-style="tableStyle.headerCellStyle"
|
|
>
|
|
<el-table-column type="index" label="序号" width="60" align="center" />
|
|
<el-table-column prop="schoolName" label="学校名称" align="center" show-overflow-tooltip />
|
|
<el-table-column prop="deptCode" label="对接学院" align="center" show-overflow-tooltip>
|
|
<template #default="scope">
|
|
{{ getDeptName(scope.row.deptCode) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="area" label="所在区" align="center" show-overflow-tooltip>
|
|
<template #default="scope">
|
|
{{ getAreaName(scope.row.area) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="150" align="center" fixed="right">
|
|
<template #default="scope">
|
|
<el-button
|
|
v-if="permissions.recruit_recruitstudentschool_edit"
|
|
type="primary"
|
|
link
|
|
icon="EditPen"
|
|
@click="addOrUpdateHandle(scope.row.id)"
|
|
>
|
|
修改
|
|
</el-button>
|
|
<el-button
|
|
v-if="permissions.recruit_recruitstudentschool_del"
|
|
type="danger"
|
|
link
|
|
icon="Delete"
|
|
@click="deleteHandle(scope.row.id)"
|
|
>
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 分页 -->
|
|
<pagination
|
|
v-bind="state.pagination"
|
|
@current-change="currentChangeHandle"
|
|
@size-change="sizeChangeHandle"
|
|
/>
|
|
|
|
<!-- 弹窗, 新增 / 修改 -->
|
|
<table-form ref="addOrUpdateRef" @refreshDataList="getDataList" />
|
|
<major-group-by-dept-form v-if="majorGroupByDeptVisible" ref="majorGroupByDeptRef" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="recruitstudentschool">
|
|
import { ref, reactive, computed, onMounted, nextTick, defineAsyncComponent } from 'vue'
|
|
import { storeToRefs } from 'pinia'
|
|
import { useUserInfo } from '/@/stores/userInfo'
|
|
import { BasicTableProps, useTable } from '/@/hooks/table'
|
|
import { useMessage, useMessageBox } from '/@/hooks/message'
|
|
import { getList } from '/@/api/recruit/recruitstudentplangroup'
|
|
import { delObj, fetchList, areaList } from '/@/api/recruit/recruitstudentschool'
|
|
import { getDeptList } from '/@/api/basic/basicclass'
|
|
|
|
const TableForm = defineAsyncComponent(() => import('./detaiform.vue'))
|
|
const MajorGroupByDeptForm = defineAsyncComponent(() => import('/@/views/recruit/recruitplanmajor/majorGroupByDept.vue'))
|
|
|
|
// 使用 Pinia store
|
|
const userInfoStore = useUserInfo()
|
|
const { userInfos } = storeToRefs(userInfoStore)
|
|
|
|
// 创建权限对象
|
|
const permissions = computed(() => {
|
|
const perms: Record<string, boolean> = {}
|
|
userInfos.value.authBtnList.forEach((perm: string) => {
|
|
perms[perm] = true
|
|
})
|
|
return perms
|
|
})
|
|
|
|
// 消息提示 hooks
|
|
const message = useMessage()
|
|
const messageBox = useMessageBox()
|
|
|
|
// 表格引用
|
|
const tableRef = ref()
|
|
const searchFormRef = ref()
|
|
const addOrUpdateRef = ref()
|
|
const majorGroupByDeptRef = ref()
|
|
|
|
// 弹窗状态
|
|
const majorGroupByDeptVisible = ref(false)
|
|
|
|
// 数据
|
|
const planList = ref<any[]>([])
|
|
const deptList = ref<any[]>([])
|
|
const provinceList = ref<any[]>([])
|
|
|
|
// 查询表单
|
|
const queryForm = reactive({
|
|
groupId: '',
|
|
schoolName: ''
|
|
})
|
|
|
|
// 获取学院名称
|
|
const getDeptName = (deptCode: string) => {
|
|
const item = deptList.value.find(item => item.deptCode === deptCode)
|
|
return item ? item.deptName : ''
|
|
}
|
|
|
|
// 获取地区名称
|
|
const getAreaName = (areaCode: string) => {
|
|
const item = provinceList.value.find(item => item.code === areaCode)
|
|
return item ? item.name : ''
|
|
}
|
|
|
|
// 表格状态
|
|
const state: BasicTableProps = reactive<BasicTableProps>({
|
|
queryForm: queryForm,
|
|
pageList: async (params: any) => {
|
|
const response = await fetchList(params)
|
|
return {
|
|
data: {
|
|
records: response.data.records,
|
|
total: response.data.total
|
|
}
|
|
}
|
|
},
|
|
createdIsNeed: false
|
|
})
|
|
|
|
// 使用 table hook
|
|
const { getDataList, currentChangeHandle, sizeChangeHandle, tableStyle } = useTable(state)
|
|
|
|
// 初始化
|
|
const init = async () => {
|
|
try {
|
|
// 查询二级学院信息
|
|
const deptData = await getDeptList()
|
|
deptList.value = deptData.data || []
|
|
deptList.value.push({ deptCode: '190', deptName: '招生就业处' })
|
|
|
|
// 获取所有省
|
|
const areaData = await areaList({ type: '0', parentId: 112 })
|
|
provinceList.value = areaData.data || []
|
|
|
|
// 获取招生计划列表
|
|
const planData = await getList()
|
|
planList.value = planData.data || []
|
|
if (planList.value.length > 0) {
|
|
queryForm.groupId = planList.value[0].id
|
|
}
|
|
getDataList()
|
|
} catch (error) {
|
|
console.error('初始化失败', error)
|
|
}
|
|
}
|
|
|
|
// 新增 / 修改
|
|
const addOrUpdateHandle = (payload?: any) => {
|
|
// 兼容新增按钮未传参时自动传入的 MouseEvent
|
|
const id = payload && typeof payload === 'object' ? null : payload
|
|
nextTick(() => {
|
|
addOrUpdateRef.value?.init(id)
|
|
})
|
|
}
|
|
|
|
// 删除
|
|
const deleteHandle = async (id: string) => {
|
|
try {
|
|
await messageBox.confirm('是否确认删除本条数据?请谨慎操作')
|
|
await delObj(id)
|
|
message.success('删除成功')
|
|
getDataList()
|
|
} catch {
|
|
// 用户取消
|
|
}
|
|
}
|
|
|
|
// 重置查询
|
|
const resetQuery = () => {
|
|
searchFormRef.value?.resetFields()
|
|
Object.keys(queryForm).forEach(key => {
|
|
queryForm[key] = ''
|
|
})
|
|
if (planList.value.length > 0) {
|
|
queryForm.groupId = planList.value[0].id
|
|
}
|
|
getDataList()
|
|
}
|
|
|
|
onMounted(() => {
|
|
init()
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|