264 lines
7.1 KiB
Vue
264 lines
7.1 KiB
Vue
<template>
|
||
<!-- 搜索工作栏 -->
|
||
|
||
<el-dialog v-model="ruleDialogVisible" title="规则设置" width="600px">
|
||
<!-- 弹窗内容 -->
|
||
<el-form-item label="判分规则" prop="roles">
|
||
<el-select
|
||
v-model="formData.roles"
|
||
placeholder="请选择判分规则"
|
||
clearable
|
||
class="!w-240px"
|
||
>
|
||
<el-option
|
||
v-for="dict in getIntDictOptions(DICT_TYPE.SCORE_ROLES)"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
|
||
<!-- 弹窗底部按钮 -->
|
||
<template #footer>
|
||
<span class="dialog-footer">
|
||
<el-button @click="ruleDialogVisible = false">取消</el-button>
|
||
<el-button type="primary" @click="handleRuleSave">保存</el-button>
|
||
</span>
|
||
</template>
|
||
</el-dialog>
|
||
|
||
|
||
<ContentWrap>
|
||
<el-form
|
||
class="-mb-15px"
|
||
:model="queryParams"
|
||
ref="queryFormRef"
|
||
:inline="true"
|
||
label-width="68px"
|
||
>
|
||
<el-form-item label="专业名称" prop="name">
|
||
<el-input
|
||
v-model="queryParams.name"
|
||
placeholder="请输入专业名称"
|
||
clearable
|
||
@keyup.enter="handleQuery"
|
||
class="!w-240px"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="专业状态" prop="status">
|
||
<el-select
|
||
v-model="queryParams.status"
|
||
placeholder="请选择专业状态"
|
||
clearable
|
||
class="!w-240px"
|
||
>
|
||
<el-option
|
||
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||
<el-button
|
||
type="primary"
|
||
plain
|
||
@click="openForm('create')"
|
||
>
|
||
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||
</el-button>
|
||
<el-button type="danger" plain @click="toggleExpandAll">
|
||
<Icon icon="ep:sort" class="mr-5px" /> 展开/折叠
|
||
</el-button>
|
||
</el-form-item>
|
||
</el-form>
|
||
</ContentWrap>
|
||
|
||
<!-- 列表 -->
|
||
<ContentWrap>
|
||
<el-table
|
||
v-loading="loading"
|
||
:data="list"
|
||
row-key="id"
|
||
:default-expand-all="isExpandAll"
|
||
v-if="refreshTable"
|
||
>
|
||
<el-table-column prop="name" label="专业名称" />
|
||
<el-table-column prop="status" label="判分规则">
|
||
<template #default="scope">
|
||
<dict-tag :type="DICT_TYPE.SCORE_ROLES" :value="scope.row.roles" />
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="status" label="状态">
|
||
<template #default="scope">
|
||
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column
|
||
label="创建时间"
|
||
align="center"
|
||
prop="createTime"
|
||
width="180"
|
||
:formatter="dateFormatter"
|
||
/>
|
||
<el-table-column label="操作" align="center">
|
||
<template #default="scope">
|
||
<el-button
|
||
link
|
||
type="primary"
|
||
@click="openForm('update', scope.row.id)"
|
||
v-hasPermi="['system:dept:update']"
|
||
>
|
||
修改
|
||
</el-button>
|
||
<el-button
|
||
link
|
||
type="danger"
|
||
@click="handleDelete(scope.row.id)"
|
||
v-hasPermi="['system:dept:delete']"
|
||
>
|
||
删除
|
||
</el-button>
|
||
<!-- 第三级才显示规则按钮 -->
|
||
<el-button
|
||
v-if="scope.row.level === 3"
|
||
link
|
||
type="warning"
|
||
@click="handleRule(scope.row)"
|
||
>
|
||
规则
|
||
</el-button>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</ContentWrap>
|
||
|
||
<!-- 表单弹窗:添加/修改 -->
|
||
<SpecialtyForm ref="formRef" @success="getList" />
|
||
</template>
|
||
<script lang="ts" setup>
|
||
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
||
import { dateFormatter } from '@/utils/formatTime'
|
||
import { handleTree } from '@/utils/tree'
|
||
import * as SpecialtyApi from '@/api/exam/specialty'
|
||
import SpecialtyForm from './SpecialtyForm.vue'
|
||
import * as UserApi from '@/api/system/user'
|
||
|
||
defineOptions({ name: 'SystemDept' })
|
||
|
||
const message = useMessage() // 消息弹窗
|
||
const { t } = useI18n() // 国际化
|
||
|
||
const loading = ref(true) // 列表的加载中
|
||
const list = ref() // 列表的数据
|
||
const queryParams = reactive({
|
||
pageNo: 1,
|
||
pageSize: 100,
|
||
name: undefined,
|
||
status: undefined
|
||
})
|
||
const queryFormRef = ref() // 搜索的表单
|
||
const isExpandAll = ref(true) // 是否展开,默认全部展开
|
||
const refreshTable = ref(true) // 重新渲染表格状态
|
||
const userList = ref<UserApi.UserVO[]>([]) // 用户列表
|
||
const ruleDialogVisible = ref(false) // 控制弹窗显示
|
||
const currentRuleRow = ref<any>(null) // 当前点击的那一行数据
|
||
const formData = ref({
|
||
roles: '',
|
||
id:''
|
||
})
|
||
const handleRule =async (row: any) => {
|
||
|
||
|
||
currentRuleRow.value = row.id
|
||
const res = await SpecialtyApi.getSpecialtyRole(currentRuleRow.value)
|
||
console.log(res)
|
||
formData.value.roles=res;
|
||
ruleDialogVisible.value = true
|
||
}
|
||
|
||
const handleRuleSave = async() => {
|
||
formData.value.id=currentRuleRow.value;
|
||
const data = formData.value
|
||
const res = await SpecialtyApi.setSpecialtyRole(data)
|
||
message.success(t(res))
|
||
handleQuery()
|
||
ruleDialogVisible.value = false
|
||
|
||
}
|
||
/** 查询部门列表 */
|
||
const getList = async () => {
|
||
loading.value = true
|
||
try {
|
||
const data = await SpecialtyApi.getSpecialtyPage(queryParams)
|
||
console.log(data)
|
||
const treeData = handleTree(data)
|
||
list.value = addLevelToTree(treeData)
|
||
} finally {
|
||
loading.value = false
|
||
}
|
||
}
|
||
|
||
/** 展开/折叠操作 */
|
||
const toggleExpandAll = () => {
|
||
refreshTable.value = false
|
||
isExpandAll.value = !isExpandAll.value
|
||
nextTick(() => {
|
||
refreshTable.value = true
|
||
})
|
||
}
|
||
|
||
|
||
/** 搜索按钮操作 */
|
||
const handleQuery = () => {
|
||
getList()
|
||
}
|
||
|
||
/** 重置按钮操作 */
|
||
const resetQuery = () => {
|
||
queryParams.pageNo = 1
|
||
queryFormRef.value.resetFields()
|
||
handleQuery()
|
||
}
|
||
|
||
/** 添加/修改操作 */
|
||
const formRef = ref()
|
||
const openForm = (type: string, id?: number) => {
|
||
formRef.value.open(type, id)
|
||
}
|
||
|
||
/** 删除按钮操作 */
|
||
const handleDelete = async (id: number) => {
|
||
try {
|
||
// 删除的二次确认
|
||
await message.delConfirm()
|
||
// 发起删除
|
||
await SpecialtyApi.deleteSpecialty(id)
|
||
message.success(t('common.delSuccess'))
|
||
// 刷新列表
|
||
await getList()
|
||
} catch {}
|
||
}
|
||
// 递归添加 level 字段
|
||
const addLevelToTree = (nodes, level = 1) => {
|
||
return nodes.map(node => {
|
||
const newNode = { ...node, level }
|
||
if (newNode.children && newNode.children.length > 0) {
|
||
newNode.children = addLevelToTree(newNode.children, level + 1)
|
||
}
|
||
return newNode
|
||
})
|
||
}
|
||
|
||
/** 初始化 **/
|
||
onMounted(async () => {
|
||
await getList()
|
||
// 获取用户列表
|
||
userList.value = await UserApi.getSimpleUserList()
|
||
})
|
||
</script>
|