【新增】知识点前端,试题导入按钮,学生身份证字段

This commit is contained in:
YOHO\20373
2025-05-19 22:05:10 +08:00
committed by 陆光LG
parent 3ae1f371f0
commit a91ef2cbd2
7 changed files with 456 additions and 8 deletions

View File

@@ -107,3 +107,7 @@ export const noauditQue = (ids: string[]) => {
data: ids
})
}
// 下载用户导入模板
export const importQueTemplate = () => {
return request.download({ url: '/exam/question/get-import-template' })
}

44
src/api/points/index.js Normal file
View File

@@ -0,0 +1,44 @@
import request from '@/config/axios'
/**
* 查询知识点列表
*/
export async function listPoints(params) {
return request.get({ url: '/exam/points/list', params })
}
/**
* 查询知识点详细
*/
export async function getPoints(spId) {
return await request.get({ url: '/exam/points/' + spId })
}
/**
* 新增知识点
*/
// 新增试题
export function addPoints(data) {
return request.post({url: '/exam/points', data});
}
/**
* 修改知识点
*/
export function updatePoints(data) {
return request.put({url: '/exam/points', data});
}
/**
* 删除知识点
*/
export const delPoints = (spId) => {
return request.delete({ url: '/exam/points/' + spId })
}

View File

@@ -0,0 +1,175 @@
<template>
<Dialog v-model="dialogVisible" :title="dialogTitle">
<el-form
ref="formRef"
v-loading="formLoading"
:model="formData"
:rules="formRules"
label-width="80px"
>
<el-form-item label="上级" prop="parentId">
<el-tree-select
v-model="formData.parentId"
:data="specialtyTree"
:props="defaultProps"
check-strictly
default-expand-all
placeholder="请选择上级"
value-key="spId"
:disabled="formData.parentId === 0"
/>
</el-form-item>
<el-form-item label="名称" prop="spName">
<el-input v-model="formData.spName" placeholder="请输入名称" />
</el-form-item>
<el-form-item label="状态" prop="status">
<el-select v-model="formData.status" clearable placeholder="请选择状态">
<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>
<template #footer>
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="dialogVisible = false"> </el-button>
</template>
</Dialog>
</template>
<script lang="ts" setup>
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import { defaultProps, handleTree } from '@/utils/tree'
import * as SpecialtyApi from '@/api/points'
import * as UserApi from '@/api/system/user'
import { CommonStatusEnum } from '@/utils/constants'
import { FormRules } from 'element-plus'
defineOptions({ name: 'SpecialtyForm' })
const { t } = useI18n() // 国际化
const message = useMessage() // 消息弹窗
const dialogVisible = ref(false) // 弹窗的是否展示
const dialogTitle = ref('') // 弹窗的标题
const formLoading = ref(false) // 表单的加载中1修改时的数据加载2提交的按钮禁用
const formType = ref('') // 表单的类型create - 新增update - 修改
interface FormData {
id?: number
title: string
parentId?: number
spName?: string // 你用的是 spName不是 name
name?: string
sort?: number
leaderUserId?: number
phone?: string
email?: string
status: number
}
const formData = ref<FormData>({
id: undefined,
title: '',
parentId: undefined,
spName: undefined,
status: CommonStatusEnum.ENABLE
})
const formRules = reactive<FormRules>({
parentId: [{ required: true, message: '上级专业不能为空', trigger: 'blur' }],
name: [{ required: true, message: '专业名称不能为空', trigger: 'blur' }],
status: [{ required: true, message: '状态不能为空', trigger: 'blur' }]
})
const formRef = ref() // 表单 Ref
const specialtyTree = ref() // 树形结构
const userList = ref<UserApi.UserVO[]>([]) // 用户列表
const isUpdate = ref(false)
/** 打开弹窗 */
const open = async (type: string, id?: number) => {
dialogVisible.value = true
dialogTitle.value = t('action.' + type)
formType.value = type
isUpdate.value = type === 'update'
// reset 之前先记录 parentId
const parentId = id
resetForm()
if (formType.value === 'create') {
if (parentId) {
formData.value.parentId = parentId // 设置上级专业
}
}
// 修改模式加载旧数据
if (isUpdate.value && id) {
formLoading.value = true
try {
formData.value = await SpecialtyApi.getPoints(id)
} finally {
formLoading.value = false
}
}
// 获取用户和专业树
userList.value = await UserApi.getSimpleUserList()
await getTree()
}
/** 提交表单 */
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
const submitForm = async () => {
// 校验表单
if (!formRef) return
const valid = await formRef.value.validate()
if (!valid) return
// 提交请求
formLoading.value = true
try {
const data = formData.value
if (formType.value === 'create') {
await SpecialtyApi.addPoints(data)
message.success(t('common.createSuccess'))
} else {
await SpecialtyApi.updatePoints(data)
message.success(t('common.updateSuccess'))
}
dialogVisible.value = false
// 发送操作成功的事件
emit('success')
} finally {
formLoading.value = false
}
}
/** 重置表单 */
const resetForm = () => {
const oldParentId = formData.value.parentId // 保留 parentId
formData.value = {
id: undefined,
title: '',
parentId: oldParentId, // 回填 parentId
name: undefined,
sort: undefined,
leaderUserId: undefined,
phone: undefined,
email: undefined,
status: CommonStatusEnum.ENABLE
}
formRef.value?.resetFields()
}
/** 获得专业-课程-题型树 */
const getTree = async () => {
const data = await SpecialtyApi.listPoints()
specialtyTree.value = handleTree(data)
}
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
</script>

View File

@@ -0,0 +1,205 @@
<template>
<ContentWrap>
<el-form
class="-mb-15px"
:model="queryParams"
ref="queryFormRef"
:inline="true"
label-width="68px"
>
<el-form-item label="专业名称" prop="spName">
<el-input
v-model="queryParams.spName"
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="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.COMMON_STATUS" :value="scope.row.status" />
</template>
</el-table-column>
<el-table-column label="操作" align="center">
<template #default="scope">
<el-button
link
type="primary"
@click="openForm('create', scope.row.id)"
v-hasPermi="['system:dept:update']"
>
新增
</el-button>
<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>
</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/points'
import SpecialtyForm from './components/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,
spName: undefined,
status: undefined
})
const queryFormRef = ref() // 搜索的表单
const isExpandAll = ref(true) // 是否展开,默认全部展开
const refreshTable = ref(true) // 重新渲染表格状态
const userList = ref<UserApi.UserVO[]>([]) // 用户列表
const formData = ref({
roles: '',
id:''
})
/** 查询部门列表 */
const getList = async () => {
loading.value = true
try {
const data = await SpecialtyApi.listPoints(queryParams)
console.log(data)
list.value = handleTree(data)
} 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) => {
nextTick(() => {
formRef.value?.open(type, id)
})
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
// 删除的二次确认
await message.delConfirm()
// 发起删除
await SpecialtyApi.delPoints(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>

View File

@@ -74,6 +74,14 @@
/>
</el-select>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="身份证" prop="sfz">
<el-input v-model="formData.sfz" maxlength="50" placeholder="请输入身份证" />
</el-form-item>
</el-col>
</el-row>
<el-row>
@@ -123,6 +131,7 @@ const formData = ref({
className: '',
mobile: '',
email: '',
sfz:'',
id: undefined,
username: '',
password: '',

View File

@@ -1,5 +1,5 @@
<template>
<Dialog v-model="dialogVisible" title="用户导入" width="400">
<Dialog v-model="dialogVisible" title="试题导入" width="400">
<el-upload
ref="uploadRef"
v-model:file-list="fileList"
@@ -18,10 +18,10 @@
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<template #tip>
<div class="el-upload__tip text-center">
<div class="el-upload__tip">
<!-- <div class="el-upload__tip">
<el-checkbox v-model="updateSupport" />
是否更新已经存在的用户数据
</div>
</div> -->
<span>仅允许导入 xlsxlsx 格式文件</span>
<el-link
:underline="false"
@@ -41,7 +41,7 @@
</Dialog>
</template>
<script lang="ts" setup>
import * as UserApi from '@/api/system/user'
import * as QuestionApi from '@/api/paper/question'
import { getAccessToken, getTenantId } from '@/utils/auth'
import download from '@/utils/download'
@@ -53,7 +53,7 @@ const dialogVisible = ref(false) // 弹窗的是否展示
const formLoading = ref(false) // 表单的加载中
const uploadRef = ref()
const importUrl =
import.meta.env.VITE_BASE_URL + import.meta.env.VITE_API_URL + '/system/student/import'
import.meta.env.VITE_BASE_URL + import.meta.env.VITE_API_URL + '/exam/question/import'
const uploadHeaders = ref() // 上传 Header 头
const fileList = ref([]) // 文件列表
const updateSupport = ref(0) // 是否更新已经存在的用户数据
@@ -132,7 +132,7 @@ const handleExceed = (): void => {
/** 下载模板操作 */
const importTemplate = async () => {
const res = await UserApi.importUserTemplate()
download.excel(res, '用户导入模.xls')
const res = await QuestionApi.importQueTemplate()
download.excel(res, '试题导入模.xls')
}
</script>

View File

@@ -76,6 +76,13 @@
<el-button @click="handleQuery"><Icon icon="ep:search" />搜索</el-button>
<el-button @click="resetQuery"><Icon icon="ep:refresh" />重置</el-button>
<el-button
type="warning"
plain
@click="handleImport"
>
<Icon icon="ep:upload" /> 导入
</el-button>
<el-button
type="primary"
plain
@click="openForm('create')"
@@ -298,6 +305,10 @@ const getList = async () => {
loading.value = false
}
}
/** 用户导入 */
const handleImport = () => {
importFormRef.value.open()
}
/** 搜索按钮操作 */
const handleQuery = () => {